mirror of
https://github.com/YunoHost-Apps/wekan_ynh.git
synced 2024-09-03 20:36:09 +02:00
31 lines
301 B
Bash
31 lines
301 B
Bash
|
|
|
|
log() {
|
|
echo "${1}"
|
|
}
|
|
|
|
info() {
|
|
log "[INFO] ${1}"
|
|
}
|
|
|
|
warn() {
|
|
log "[WARN] ${1}"
|
|
}
|
|
|
|
err() {
|
|
log "[ERR] ${1}"
|
|
}
|
|
to_logs() {
|
|
|
|
# When yunohost --verbose or bash -x
|
|
if $_ISVERBOSE; then
|
|
cat
|
|
else
|
|
cat > /dev/null
|
|
fi
|
|
}
|
|
|
|
ynh_version_gt ()
|
|
{
|
|
dpkg --compare-versions "$1" gt "$2"
|
|
}
|