mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 04:23:37 +01:00
fix return code for build-* and -s option
No idea how that slipped in there, damn.
This commit is contained in:
parent
fefff0637a
commit
0d6a7728a1
1 changed files with 9 additions and 3 deletions
|
@ -323,13 +323,19 @@ case $1 in
|
|||
# Project compilation
|
||||
"build"|"b")
|
||||
fxsdk_build
|
||||
[[ $1 == "-s" ]] && fxsdk_send;;
|
||||
if [[ "$2" == "-s" ]]; then
|
||||
fxsdk_send
|
||||
fi;;
|
||||
"build-fx"|"bf"|"bfx")
|
||||
fxsdk_build_fx
|
||||
[[ $1 == "-s" ]] && fxsdk_send_fx;;
|
||||
if [[ "$2" == "-s" ]]; then
|
||||
fxsdk_send_fx
|
||||
fi;;
|
||||
"build-cg"|"bc"|"bcg")
|
||||
fxsdk_build_cg
|
||||
[[ $1 == "-s" ]] && fxsdk_send_cg;;
|
||||
if [[ "$2" == "-s" ]]; then
|
||||
fxsdk_send_cg
|
||||
fi;;
|
||||
|
||||
# Install
|
||||
"send"|"s")
|
||||
|
|
Loading…
Reference in a new issue