summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-02-09 18:30:40 +0000
committerNick White <git@njw.me.uk>2010-02-09 18:30:40 +0000
commit3de29d9a69207879f608fcfc34359bd34a018b98 (patch)
tree0a4f13607b49f86a26754fa770d71fa22879c569
parentef6704c7111642f5c1cccf09c2990adeb1fec299 (diff)
downloadgemrb-gameinstallers-3de29d9a69207879f608fcfc34359bd34a018b98.tar.bz2
gemrb-gameinstallers-3de29d9a69207879f608fcfc34359bd34a018b98.zip
Improve warning when removing windows files
-rwxr-xr-xauto-installer.sh2
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