2016-01-28 19:31:08 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Need to put the cygwin stuff into our PATH
|
|
|
|
export PATH=/usr/bin:$PATH
|
|
|
|
BUILD_SCRIPT_ROOT=$(dirname $0)
|
|
|
|
|
|
|
|
echo ">>> Build Script Root = $BUILD_SCRIPT_ROOT"
|
|
|
|
echo
|
|
|
|
echo ">>> PATH in Win Shell Script = $PATH"
|
|
|
|
echo
|
|
|
|
|
2016-02-01 19:04:57 +03:00
|
|
|
perl "$BUILD_SCRIPT_ROOT/build.pl" "$@"
|