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
;;
--target-linux)
TARGETS+=$LIN
TARGETS+=($LIN)
shift
;;
--target-macos)
TARGETS+=$MAC
TARGETS+=($MAC)
shift
;;
--target-windows)
TARGETS+=$WIN
TARGETS+=($WIN)
shift
;;
--jvm-impl)