15 lines
197 B
Bash
15 lines
197 B
Bash
#!/bin/bash
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
function check_zola_is_present() {
|
|
if zola --version >/dev/null 2>&1; then
|
|
echo "true"
|
|
else
|
|
echo "false"
|
|
fi
|
|
}
|
|
|
|
# function install_zola() {}
|
|
|