You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd $DIR && \ in docker/dev.sh should be changed to cd "$DIR" && \ because if path contains a string such as - then the change directory command will fail. Wrapping the directory in quotes fixes the issue.
The text was updated successfully, but these errors were encountered:
datahub/docker/dev.sh
Line 25 in ab0b0a2
cd $DIR && \
indocker/dev.sh
should be changed tocd "$DIR" && \
because if path contains a string such as-
then the change directory command will fail. Wrapping the directory in quotes fixes the issue.The text was updated successfully, but these errors were encountered: