[X2Go-Commits] [nx-libs] 262/429: shellcheck: Fix SC2064 issues
git-admin at x2go.org
git-admin at x2go.org
Mon Oct 18 09:36:45 CEST 2021
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch 3.6.x
in repository nx-libs.
commit dfee5a9886112b29f14f762016c8fe892846bfef
Author: Mario Trangoni <mjtrangoni at gmail.com>
Date: Sat Feb 6 17:56:53 2021 +0100
shellcheck: Fix SC2064 issues
For more information:
https://www.shellcheck.net/wiki/SC2064 -- Use single quotes, otherwise this...
Signed-off-by: Mario Trangoni <mjtrangoni at gmail.com>
---
roll-tarballs.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/roll-tarballs.sh b/roll-tarballs.sh
index c9af13102..95b820c5a 100755
--- a/roll-tarballs.sh
+++ b/roll-tarballs.sh
@@ -68,7 +68,7 @@ TARGETDIR="../.."
MANIFEST="$(mktemp)"
TEMP_DIR="$(mktemp -d)"
-trap "rm -f \"${MANIFEST}\"; rm -rf \"${TEMP_DIR}\"" 0
+trap 'rm -f "${MANIFEST}"; rm -rf "${TEMP_DIR}"' 0
# create local copy of Git project at temp location
git archive --format=tar "${CHECKOUT}" --prefix="${PROJECT}-${RELEASE}/" | ( cd "$TEMP_DIR"; tar xf - )
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
More information about the x2go-commits
mailing list