Skip to content

Commit a30b2b5

Browse files
Merge pull request #183 from matyasselmeci/pr/unquote
Delete quotes in/around CVMFSEXEC_REPOS
2 parents 0ce0c5d + 09dbfb8 commit a30b2b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sbin/entrypoint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ elif [[ ! $CVMFSEXEC_REPOS =~ [a-z]+ ]]; then
7676
echo "No CVMFS repos requested, skipping cvmfsexec."
7777
safe_exec "$@"
7878
fi
79-
CVMFSEXEC_REPOS=$(tr -s ',' ' ' <<<"$CVMFSEXEC_REPOS")
79+
CVMFSEXEC_REPOS=$(tr -s ',' ' ' <<<$CVMFSEXEC_REPOS)
80+
CVMFSEXEC_REPOS=$(tr -d '"'"'" <<<$CVMFSEXEC_REPOS) # delete single and double quotes (docker envfiles treat quotes literally)
8081

8182
cd "$cvmfsexec_root" || \
8283
fail "Couldn't enter $cvmfsexec_root"

0 commit comments

Comments
 (0)