mirror of
https://github.com/YunoHost-Apps/lstu_ynh.git
synced 2024-09-03 19:36:12 +02:00
7 lines
176 B
Bash
7 lines
176 B
Bash
#!/bin/bash
|
|
|
|
CHECK_VAR () { # Verifies that the variable is not empty.
|
|
# $1 = Variable to be checked
|
|
# $2 = Display text on error
|
|
test -n "$1" || (echo "$2" >&2 && false)
|
|
}
|