corrected typo for send option

This commit is contained in:
Slyvtt 2023-03-25 09:33:23 +01:00 committed by Lephenixnoir
parent 8574824b31
commit 883ca77167
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -241,11 +241,11 @@ fxsdk_build_in() {
} }
fxsdk_send() { 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 fxsdk_send_fx
fi 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 fxsdk_send_cg
fi fi
@ -345,6 +345,8 @@ case "$1" in
fxsdk_send_fx;; fxsdk_send_fx;;
"send-cg"|"sc"|"scg") "send-cg"|"sc"|"scg")
fxsdk_send_cg;; fxsdk_send_cg;;
"send-fxascg"|"sfxcg"|"sfcg")
fxsdk_send_fxascg;;
# Utilities # Utilities
"path") "path")