diff options
author | Nick White <git@njw.me.uk> | 2010-02-09 18:30:40 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-02-09 18:30:40 +0000 |
commit | 3de29d9a69207879f608fcfc34359bd34a018b98 (patch) | |
tree | 0a4f13607b49f86a26754fa770d71fa22879c569 | |
parent | ef6704c7111642f5c1cccf09c2990adeb1fec299 (diff) | |
download | gemrb-gameinstallers-3de29d9a69207879f608fcfc34359bd34a018b98.tar.bz2 gemrb-gameinstallers-3de29d9a69207879f608fcfc34359bd34a018b98.zip |
Improve warning when removing windows files
-rwxr-xr-x | auto-installer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto-installer.sh b/auto-installer.sh index f9ea255..32da705 100755 --- a/auto-installer.sh +++ b/auto-installer.sh @@ -90,7 +90,7 @@ if [ -n "$PATCHES" ]; then fi if [ -n "$WINDOWSFILES" ]; then - if query "Do you want to remove unneeded windows files?" n; then + if query "Do you want to remove Windows-only files (may break compatibility with some mods)?" n; then for badfile in $WINDOWSFILES; do rm -rf "${TARGETDIR}/${badfile}" done |