corrected typo for send option

This commit is contained in:
Sylvain PILLOT 2023-03-25 09:33:23 +01:00 committed by Lephenixnoir
parent 8574824b31
commit 883ca77167
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 4 additions and 2 deletions

View File

@ -241,11 +241,11 @@ fxsdk_build_in() {
}
fxsdk_send() {
if [[ -e "build-fx" && ! -e "build-cg" && ! -e "build-fx-as-cg" ]]; then
if [[ -e "build-fx" && ! -e "build-cg" && ! -e "build-fxascg" ]]; then
fxsdk_send_fx
fi
if [[ -e "build-cg" && ! -e "build-fx" && ! -e "build-fx-as-cg" ]]; then
if [[ -e "build-cg" && ! -e "build-fx" && ! -e "build-fxascg" ]]; then
fxsdk_send_cg
fi
@ -345,6 +345,8 @@ case "$1" in
fxsdk_send_fx;;
"send-cg"|"sc"|"scg")
fxsdk_send_cg;;
"send-fxascg"|"sfxcg"|"sfcg")
fxsdk_send_fxascg;;
# Utilities
"path")