Removing extra wrapping double-quote marks

- Fixes 904
This commit is contained in:
James Barnsley
2023-06-24 16:32:43 +12:00
parent 6aaf19c990
commit 76d6e929b5

View File

@ -2,13 +2,13 @@
if [ -z "$PULSE_COOKIE_DATA" ] if [ -z "$PULSE_COOKIE_DATA" ]
then then
printf '%s' "$(echo "$PULSE_COOKIE_DATA" | sed -e 's/../\\x&/g')" >"$HOME"/pulse.cookie printf '%s' "$(echo $PULSE_COOKIE_DATA | sed -e 's/../\\x&/g')" >$HOME/pulse.cookie
export PULSE_COOKIE="$HOME"/pulse.cookie export PULSE_COOKIE=$HOME/pulse.cookie
fi fi
if [ ${PIP_PACKAGES:+x} ]; then if [ ${PIP_PACKAGES:+x} ]; then
echo "-- INSTALLING PIP PACKAGES $PIP_PACKAGES --" echo "-- INSTALLING PIP PACKAGES $PIP_PACKAGES --"
python3 -m pip install --no-cache --upgrade "$PIP_PACKAGES" python3 -m pip install --no-cache --upgrade $PIP_PACKAGES
fi fi
exec "$@" exec "$@"