From 4896ea585568c3dcf49fc73c4fc9f909997518fa Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Mon, 15 Jul 2024 18:23:52 -0700 Subject: [PATCH] Update auto-fix-cron changed to using ${HOME} environment variable. --- auto-fix-cron | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto-fix-cron b/auto-fix-cron index 270d16e..0eaf7dd 100644 --- a/auto-fix-cron +++ b/auto-fix-cron @@ -1,3 +1,3 @@ -@reboot ./start-qortal.sh -@reboot sleep 399 && ./auto-fix-qortal.sh > "/home/pi/qortal/auto-fix-startup.log" 2>&1 -1 1 */3 * * /home/pi/auto-fix-qortal.sh > "/home/pi/qortal/auto-fix-01.log" 2>&1 +@reboot ${HOME}/start-qortal.sh +@reboot sleep 399 && ${HOME}/auto-fix-qortal.sh > "${HOME}/qortal/auto-fix-startup.log" 2>&1 +1 1 */3 * * ${HOME}/auto-fix-qortal.sh > "${HOME}/qortal/auto-fix-01.log" 2>&1