From 4a1133915c8022e5d5e5b173d1289bbad0d8d12e Mon Sep 17 00:00:00 2001 From: ljf Date: Tue, 2 Mar 2021 17:31:37 +0100 Subject: [PATCH] [fix] Permission issue if we install borgserver and next borg --- scripts/_common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 6bb0320..109f59c 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -15,7 +15,8 @@ install_borg_with_pip () { /opt/borg-env/bin/python /opt/borg-env/bin/pip install borgbackup==1.1.15 echo "#!/bin/bash /opt/borg-env/bin/python /opt/borg-env/bin/borg \"\$@\"" > /usr/local/bin/borg - chmod u+x /usr/local/bin/borg + # We need this to be executable by + chmod a+x /usr/local/bin/borg fi }