mirror of
https://github.com/JonasunderscoreJones/dayz-linux-gui-launcher.git
synced 2025-10-23 00:09:19 +02:00
fix: debug function return value
This commit is contained in:
parent
fad3edc23e
commit
bd55608b76
1 changed files with 3 additions and 1 deletions
|
@ -147,7 +147,9 @@ msg() {
|
|||
}
|
||||
|
||||
debug() {
|
||||
[[ ${DEBUG} == 1 ]] && echo "[${SELF}][debug] ${@}"
|
||||
if [[ ${DEBUG} == 1 ]]; then
|
||||
echo "[${SELF}][debug] ${@}"
|
||||
fi
|
||||
}
|
||||
|
||||
check_dir() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue