From bdb33272f01002e72291ec85bd00a596e8676e2f Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 9 Mar 2024 21:35:06 +0100 Subject: [PATCH] Fix typo --- scripts/Common/Config/rclone/InstallSync.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Common/Config/rclone/InstallSync.sh b/scripts/Common/Config/rclone/InstallSync.sh index 586ffaa0a..81a669643 100755 --- a/scripts/Common/Config/rclone/InstallSync.sh +++ b/scripts/Common/Config/rclone/InstallSync.sh @@ -4,5 +4,5 @@ dirname="$2"; serviceName="rclone@$provider:$dirname"; echo "Please create a remote called \`$1\`"; -rclone config | true; -systemctl --user enable "$serviceName" --now | true; +rclone config || true; +systemctl --user enable "$serviceName" --now || true;