@@ -92,6 +92,7 @@ for a in "$@"; do
9292 rotated=$(( rotated+ 1 ))
9393 fi
9494 done
95+ echo 1>&2 " Please set executable_name to a valid name in a text editor"
9596 exit 1
9697 fi
9798done
@@ -103,7 +104,7 @@ if [ -x "$1" ] ; then
103104fi
104105
105106if [ -z " ${executable_name} " ] || [ ! -x " ${executable_name} " ]; then
106- echo " Please set executable_name to a valid name in a text editor or as the first command line parameter"
107+ echo 1>&2 " Please set executable_name to a valid name in a text editor or as the first command line parameter"
107108 exit 1
108109fi
109110
@@ -150,8 +151,8 @@ case ${os_type} in
150151 ;;
151152 * )
152153 # alright whos running games on freebsd
153- echo " Unknown operating system ($( uname -s) )"
154- echo " Make an issue at https://github.com/NeighTools/UnityDoorstop"
154+ echo 1>&2 " Unknown operating system ($( uname -s) )"
155+ echo 1>&2 " Make an issue at https://github.com/NeighTools/UnityDoorstop"
155156 exit 1
156157 ;;
157158esac
@@ -189,10 +190,10 @@ case "${file_out}" in
189190 arch=" x86"
190191 ;;
191192 * )
192- echo " The executable \" ${executable_path} \" is not compiled for x86 or x64 (might be ARM?)"
193- echo " If you think this is a mistake (or would like to encourage support for other architectures)"
194- echo " Please make an issue at https://github.com/NeighTools/UnityDoorstop"
195- echo " Got: ${file_out} "
193+ echo 1>&2 " The executable \" ${executable_path} \" is not compiled for x86 or x64 (might be ARM?)"
194+ echo 1>&2 " If you think this is a mistake (or would like to encourage support for other architectures)"
195+ echo 1>&2 " Please make an issue at https://github.com/NeighTools/UnityDoorstop"
196+ echo 1>&2 " Got: ${file_out} "
196197 exit 1
197198 ;;
198199esac
0 commit comments