Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Change discord channel name in "error" messages. #252

Merged
merged 1 commit into from
Apr 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/usr/local/bin/hassbian-config
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function run-suite { #This is the function the actually run install/upgrade.
"$2"-"$1"-package #Running the script function install/upgrade SUITE.
RETURN=("$?") # Return value after script execution.
if [ "$DEBUG" == "true" ]; then set +x; fi #Deactivating debug if --debug is used.
if [ "$RETURN" == "0" ]; then STATE="installed"; else printf "\\e[0mIf you have issues with this script, please say something in the #devs_hassbian channel on Discord.\\n" && STATE="failed"; fi #Set suite state to installed if 0 is returned, failed otherwise.
if [ "$RETURN" == "0" ]; then STATE="installed"; else printf "\\e[0mIf you have issues with this script, please say something in the #hassbian channel on Discord.\\n" && STATE="failed"; fi #Set suite state to installed if 0 is returned, failed otherwise.
if [ "$1" == "remove" ]; then
rm "$SUITE_CONTROL_DIR/$2"
else
Expand Down