We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ce0c5d + 09dbfb8 commit a30b2b5Copy full SHA for a30b2b5
sbin/entrypoint.sh
@@ -76,7 +76,8 @@ elif [[ ! $CVMFSEXEC_REPOS =~ [a-z]+ ]]; then
76
echo "No CVMFS repos requested, skipping cvmfsexec."
77
safe_exec "$@"
78
fi
79
-CVMFSEXEC_REPOS=$(tr -s ',' ' ' <<<"$CVMFSEXEC_REPOS")
+CVMFSEXEC_REPOS=$(tr -s ',' ' ' <<<$CVMFSEXEC_REPOS)
80
+CVMFSEXEC_REPOS=$(tr -d '"'"'" <<<$CVMFSEXEC_REPOS) # delete single and double quotes (docker envfiles treat quotes literally)
81
82
cd "$cvmfsexec_root" || \
83
fail "Couldn't enter $cvmfsexec_root"
0 commit comments