Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

total rewrite of Doom3 script #1869

Merged
merged 10 commits into from
May 25, 2022
Prev Previous commit
Next Next commit
fix while loop
theofficialgman committed May 24, 2022
commit 48bd01923a04020ae730ef00e954204a1b6f4c17
4 changes: 2 additions & 2 deletions apps/Doom 3/install
Original file line number Diff line number Diff line change
@@ -58,8 +58,8 @@ Terminal=false" | tee $HOME/.local/share/applications/Doom3.desktop >/dev/null |
while true; do
read -p "Do you have the game files [Y/n]?" yn
case $yn in
[Yy]* ) User_Supplied;;
[Nn]* ) Download_Demo;;
[Yy]* ) User_Supplied; exit;;
[Nn]* ) Download_Demo; exit;;
* ) echo "Please answer yes or no.";;
esac
done