diff options
-rwxr-xr-x | scripts/automated-builder.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/automated-builder.sh b/scripts/automated-builder.sh index 6847c719..ea028c18 100755 --- a/scripts/automated-builder.sh +++ b/scripts/automated-builder.sh @@ -25,18 +25,20 @@ BUILD_DIR=. if [ "$SYSTEM" == "Linux" ]; then BUILD_DIR=linux_make fi - if [ "$SYSTEM" == "Darwin" ]; then BUILD_DIR=darwin_app fi +if [ "`echo $SYSTEM | sed -n 's|\(MINGW\)|\1|p'`" == "MINGW" ]; then + BUILD_DIR=win32_inno +fi cd "$BUILD_DIR" pwd make distclean make package_clean rm -rf build -#make -C "${auto_build_root_dir}/packages" patch_pd +make -C "${auto_build_root_dir}/packages" patch_pd make install && make package -#make test_package +make test_package make test_locations |