From db60da7cdca81b2b9e71d6fe7da1070fc2ed81e7 Mon Sep 17 00:00:00 2001 From: Xavier Petit Date: Tue, 30 Apr 2019 22:05:52 +0100 Subject: [PATCH] Ignore chown failure --- scripts/bash_tweaks.sh | 2 +- scripts/go.sh | 2 +- scripts/vscode.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bash_tweaks.sh b/scripts/bash_tweaks.sh index f876ed3e..88ec69e1 100755 --- a/scripts/bash_tweaks.sh +++ b/scripts/bash_tweaks.sh @@ -55,5 +55,5 @@ do # Fix rights USR=$(echo "$DIR" | rev | cut -d/ -f1 | rev) - chown -R $USR:$USR $DIR + chown -R $USR:$USR $DIR || true done diff --git a/scripts/go.sh b/scripts/go.sh index d9409459..c3a27a4a 100755 --- a/scripts/go.sh +++ b/scripts/go.sh @@ -20,5 +20,5 @@ do # Fix rights USR=$(echo "$DIR" | rev | cut -d/ -f1 | rev) - chown -R $USR:$USR $DIR + chown -R $USR:$USR $DIR || true done diff --git a/scripts/vscode.sh b/scripts/vscode.sh index cd2cd3ab..ddc5292a 100755 --- a/scripts/vscode.sh +++ b/scripts/vscode.sh @@ -31,5 +31,5 @@ do # Fix rights USR=$(echo "$DIR" | rev | cut -d/ -f1 | rev) - chown -R $USR:$USR $DIR + chown -R $USR:$USR $DIR || true done