fix: Multiple '--target*' didn't work
This commit is contained in:
parent
cf4b1022f6
commit
79f07a5e01
6
warp4j
6
warp4j
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user