Oops, left notify-send instead of echo

This commit is contained in:
Siina Mashek 2024-04-22 06:49:46 +03:00
parent c1c49aa7d3
commit fc5c034716

View File

@ -3,7 +3,7 @@
( (
if flock -n 9 if flock -n 9
then then
notify-send 'Not doing the critical operation (lock present).' echo 'Lock present, exiting'
exit; exit;
fi fi
@ -13,9 +13,9 @@
NC_DIR="/home/siina/Nextcloud" NC_DIR="/home/siina/Nextcloud"
NC_URL="https://cloud.criminallycute.fi" NC_URL="https://cloud.criminallycute.fi"
notify-send "Nextcloud Sync Syncing ..." echo "Nextcloud Sync Syncing ..."
nextcloudcmd -u $NC_USER -p $NC_PASS $NC_DIR $NC_URL nextcloudcmd -u $NC_USER -p $NC_PASS $NC_DIR $NC_URL
notify-send "Nextcloud Sync Done syncing" echo "Nextcloud Sync Done syncing"
) 9>'/tmp/nc-sync.lock' ) 9>'/tmp/nc-sync.lock'
rm -f '/tmp/nc-sync.lock' rm -f '/tmp/nc-sync.lock'