Open kuhlaid opened 1 week ago
https://github.com/datahub-project/datahub/blob/ab0b0a2eb907f327e267ce0b61e33eff2ea06470/docker/dev.sh#L25
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.
cd $DIR && \
docker/dev.sh
cd "$DIR" && \
-
https://github.com/datahub-project/datahub/blob/ab0b0a2eb907f327e267ce0b61e33eff2ea06470/docker/dev.sh#L25
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.