Skip to content
Snippets Groups Projects
Commit 6516f5f4 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

bugfix wolf folder

parent 7bf5e8e9
No related branches found
No related tags found
No related merge requests found
...@@ -240,13 +240,13 @@ func_echo "You are in folder $PWD" ...@@ -240,13 +240,13 @@ func_echo "You are in folder $PWD"
if [ $WOLF_PATH == "undefined" ]; then if [ $WOLF_PATH == "undefined" ]; then
func_echo "Enter path for wolf folder (either /global/path or relative/path):" func_echo "Enter path for wolf folder (either /global/path or relative/path):"
read WOLF_PATH read WOLF_PATH
while ! cd $WOLF_PATH ; do
func_echo_error "Invalid dependency path."
func_echo "Enter path for dependencies (either /global/path or relative/path):"
read WOLF_PATH
done
fi fi
mkdir wolf while ! cd $WOLF_PATH ; do
func_echo_error "Invalid wolf folder path."
func_echo "Enter path for dependencies (either /global/path or relative/path):"
read WOLF_PATH
done
mkdir -pv wolf
cd wolf cd wolf
WOLF_PATH=$PWD WOLF_PATH=$PWD
func_echo "wolf folder path: $WOLF_PATH" func_echo "wolf folder path: $WOLF_PATH"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment