-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6373f58
commit e6661ba
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/env bash | ||
|
||
CONTENT=" | ||
An existing instance of Open Voice OS/HiveMind has been detected. | ||
Upgrading your existing instance of Open Voice OS or HiveMind to the latest version ensures that you stay ahead with the most advanced features, critical security updates, bug fixes, and performance optimizations. | ||
This not only enhances the overall functionality and user experience but also ensures compatibility with the latest integrations and tools, keeping your system reliable, secure, and future-proof. | ||
Do you want to update Open Voice OS to the latest version? | ||
" | ||
TITLE="Open Voice OS Installation - Update" | ||
|
||
export CONTENT TITLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/env bash | ||
|
||
# shellcheck source=locales/en-us/misc.sh | ||
source "tui/locales/$LOCALE/misc.sh" | ||
|
||
# shellcheck source=locales/en-us/update.sh | ||
source "tui/locales/$LOCALE/update.sh" | ||
|
||
whiptail --yesno --no-button "$NO_BUTTON" --yes-button "$YES_BUTTON" --title "$TITLE" "$CONTENT" "$TUI_WINDOW_HEIGHT" "$TUI_WINDOW_WIDTH" | ||
|
||
exit_status=$? | ||
if [ "$exit_status" -eq 1 ]; then | ||
exit 0 | ||
fi |