datahub-project / datahub

The Metadata Platform for your Data and AI Stack
https://datahubproject.io
Apache License 2.0
9.93k stars 2.94k forks source link

Place quotes #11860

Open kuhlaid opened 1 week ago

kuhlaid commented 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.