XEmacs 21.4.21.
[chise/xemacs-chise.git.1] / lib-src / installexe.sh
index 2c1849a..1698125 100644 (file)
@@ -1,14 +1,20 @@
-#!sh
+#!bash
 
 install_prog=$1
 shift
 
 tstr=""
-while [ $# -gt 0 ]
+
+while [[ $# -gt 0 ]]
 do
-  if [ -f $1.exe ]
+  if [[ -f $1.exe ]]
   then
-    tstr="$tstr$1.exe $2.exe"
+    if [[ "$2" == *.exe ]]
+    then
+      tstr="$tstr$1 $2"
+    else
+      tstr="$tstr$1.exe $2.exe"
+    fi
     shift 2
   else
     tstr="$tstr$1 "