summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Grande2020-10-04 15:41:21 -0400
committerVincent Grande2020-10-04 15:41:21 -0400
commit438cc3e1f08fba1378372092a00aada5dd964cc8 (patch)
treed49b8a3e49e977b26da6721775bcbf4b69e0c187
parent5661ce5e34a7864b5b79d7e65e0f37d04d374dcc (diff)
downloadaur-438cc3e1f08fba1378372092a00aada5dd964cc8.tar.gz
fix
-rw-r--r--dxvk-mingw-proton-ge-async-git.install12
1 files changed, 6 insertions, 6 deletions
diff --git a/dxvk-mingw-proton-ge-async-git.install b/dxvk-mingw-proton-ge-async-git.install
index 613dc191df27..a30dc9b13c33 100644
--- a/dxvk-mingw-proton-ge-async-git.install
+++ b/dxvk-mingw-proton-ge-async-git.install
@@ -4,8 +4,6 @@ echo "You need to remove certain old 64bit and 32bit dxvk .dll files from your p
This package also needs reinstalled after every Proton update.
-Continue [y/n]?
-
Examples:
sudo rm -rf /usr/share/steam/compatibilitytools.d/proton-ge-custom*/dist/lib/wine/dxvk/d3d*
@@ -14,7 +12,9 @@ sudo rm -rf /usr/share/steam/compatibilitytools.d/proton-ge-custom*/dist/lib/win
sudo rm -rf /usr/share/steam/compatibilitytools.d/proton-ge-custom*/dist/lib64/wine/dxvk/d3d*
sudo rm -rf /usr/share/steam/compatibilitytools.d/proton-ge-custom*/dist/lib64/wine/dxvk/dxg*"
-select $yn in
- Yes ) break;;
- No ) exit;;
-esac
+read -p "Are you sure? " -n 1 -r
+echo # (optional) move to a new line
+if [[ $REPLY =~ ^[Yy]$ ]]
+then
+ # do dangerous stuff
+fi