diff options
Diffstat (limited to '')
-rw-r--r-- | windows/build.bash (renamed from windows/build.sh) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/build.sh b/windows/build.bash index 665951b9..e6754358 100644 --- a/windows/build.sh +++ b/windows/build.bash @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # ############################################################################### # @@ -48,9 +48,9 @@ esac # This script can be run either at the top-level directory of the package # or in the same directory containing this script. -if [ ! -f windows/build.sh ]; then +if [ ! -f windows/build.bash ]; then cd .. - if [ ! -f windows/build.sh ]; then + if [ ! -f windows/build.bash ]; then echo "You are in a wrong directory." >&2 exit 1 fi |