We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e10db5d commit 2c55c14Copy full SHA for 2c55c14
install.sh
@@ -37,6 +37,7 @@ install_tabchi_mokhber() {
37
sudo uv run main.py
38
39
echo "Your bot has been successfully run. Check the commands using the 'Help' command in Telegram."
40
+ sleep 10 # Adding a 10-second delay before returning to the menu
41
}
42
43
update_tabchi_mokhber() {
@@ -91,9 +92,9 @@ while true; do
91
92
echo -e "2) Update Tabchi Mokhber"
93
echo -e "3) Uninstall"
94
echo -e "0) Exit"
- read -p "Enter your choice: " main_choice
95
+ read -p "Enter your choice: " main_choice # Fixed variable name
96
- case $option in
97
+ case $main_choice in # Using $main_choice instead of $option
98
1)
99
install_tabchi_mokhber
100
create_service
0 commit comments