fix: Multiple '--target*' didn't work

This commit is contained in:
Serge Guzik 2019-02-12 21:55:28 +02:00
parent cf4b1022f6
commit 79f07a5e01

6
warp4j
View File

@ -113,15 +113,15 @@ while [[ $# -gt 0 ]]; do
shift shift
;; ;;
--target-linux) --target-linux)
TARGETS+=$LIN TARGETS+=($LIN)
shift shift
;; ;;
--target-macos) --target-macos)
TARGETS+=$MAC TARGETS+=($MAC)
shift shift
;; ;;
--target-windows) --target-windows)
TARGETS+=$WIN TARGETS+=($WIN)
shift shift
;; ;;
--jvm-impl) --jvm-impl)