mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-16 19:35:39 +00:00
QUIT: fixed syntax
This commit is contained in:
parent
0fc93d019a
commit
150db046e3
|
@ -18,10 +18,9 @@ configurator_process_complete_dialog() {
|
||||||
--title "RetroDECK Configurator Utility - Process Complete" \
|
--title "RetroDECK Configurator Utility - Process Complete" \
|
||||||
--text="The process of $1 is now complete.\n\nYou may need to quit and restart RetroDECK for your changes to take effect\n\nClick OK to return to the Main Menu or Quit to quit RetroDECK."
|
--text="The process of $1 is now complete.\n\nYou may need to quit and restart RetroDECK for your changes to take effect\n\nClick OK to return to the Main Menu or Quit to quit RetroDECK."
|
||||||
|
|
||||||
if [ ! $? == 0 ] # OK button clicked
|
if [ ! $? == 0 ]; then # OK button clicked
|
||||||
then
|
|
||||||
configurator_welcome_dialog
|
configurator_welcome_dialog
|
||||||
elif [ ! $? == 1 ] # Quit button clicked
|
elif [ ! $? == 1 ]; then # Quit button clicked
|
||||||
pkill -f retrodeck
|
pkill -f retrodeck
|
||||||
pkill -f emulationstation
|
pkill -f emulationstation
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue