-
-
Save tilmanschweitzer/ed143af30bc74360a396 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while [[ ! $RELATIVE_PATH_CHECKED =~ ^[Yy]$ ]] | |
do | |
read -p "Is the relative path to the dev folder '${RELATIVE_PATH}' correct? [y/n] " -n 1 -r RELATIVE_PATH_CHECKED | |
echo "" | |
if [[ $RELATIVE_PATH_CHECKED =~ ^[Nn]$ ]] | |
then | |
read -p "Type in the correct path: " -r RELATIVE_PATH | |
fi | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment