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
When I am following the instructions in the programmers guide, and run the ./reinstall.sh bash script file in the Contrib directory, nothing seems to happen. I see no errors, but no files/folders get deleted, and no repos are pulled down from github. I'm running Ubuntu 17.10
Looking at the script, I narrowed the problem down to these lines:
if [ "x$1" = "x-y" ]; then
REPLY="y";
else
read -p "Do you want to nuke, fetch and patch contributed packages [y/N]? "
fi
if [ "X$REPLY" = "Xy" ]; then
When I remove those lines, the script runs perfectly! Who can help me find the problem with these bash scripting lines?
When I am following the instructions in the programmers guide, and run the ./reinstall.sh bash script file in the Contrib directory, nothing seems to happen. I see no errors, but no files/folders get deleted, and no repos are pulled down from github. I'm running Ubuntu 17.10
Looking at the script, I narrowed the problem down to these lines:
When I remove those lines, the script runs perfectly! Who can help me find the problem with these bash scripting lines?
Tip: For alternative ways to script a Y/N prompt in bash, here is the question on StackOverflow: https://stackoverflow.com/questions/3231804/in-bash-how-to-add-are-you-sure-y-n-to-any-command-or-alias
The text was updated successfully, but these errors were encountered: