🚨 (flatpak-sync) Solve some shellcheck warnings/errors
This commit is contained in:
parent
e87d497ea7
commit
84d954816e
1 changed files with 4 additions and 2 deletions
|
@ -16,11 +16,13 @@ ERR_COLOR="\033[1;31m"
|
||||||
NO_COLOR="\033[0m"
|
NO_COLOR="\033[0m"
|
||||||
|
|
||||||
function info() {
|
function info() {
|
||||||
printf "$APP_COLOR[$APP_NAME] $INFO_COLOR$1$NO_COLOR\n"
|
# shellcheck disable=SC2059
|
||||||
|
printf "${APP_COLOR}[$APP_NAME] $INFO_COLOR%s$NO_COLOR\n" "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
function error() {
|
function error() {
|
||||||
printf "$APP_COLOR[$APP_NAME] $ERR_COLOR$1$NO_COLOR\n"
|
# shellcheck disable=SC2059
|
||||||
|
printf "${APP_COLOR}[$APP_NAME] $ERR_COLOR%s$NO_COLOR\n" "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
function usage() {
|
function usage() {
|
||||||
|
|
Loading…
Reference in a new issue