aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtest/test.sh2
-rw-r--r--tools/runa2x.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test.sh b/test/test.sh
index 7d346a0a5e..b5f9e51ed8 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -31,7 +31,7 @@ PRINT_USAGE=0
# Ensure cygwin bin dir is on the path if running under it
if [[ $OSTYPE == "cygwin" ]]; then
- PATH="/usr/bin:$PATH"
+ PATH="$PATH:/usr/bin"
fi
while getopts "chs:" OPTION ; do
diff --git a/tools/runa2x.sh b/tools/runa2x.sh
index 21f4379af5..1c234f49ab 100644
--- a/tools/runa2x.sh
+++ b/tools/runa2x.sh
@@ -30,7 +30,7 @@
# Ensure cygwin bin dir is on the path if running under it
if [[ $OSTYPE == "cygwin" ]]; then
- PATH="/usr/bin:$PATH"
+ PATH="$PATH:/usr/bin"
else
>&2 echo "We're trying to limit the scope of this insanity to CMake + Cygwin"
exit 1