mirror of
https://github.com/YunoHost-Apps/wallabag2_ynh.git
synced 2024-10-01 13:35:06 +02:00
19 lines
583 B
Bash
19 lines
583 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
# Define a function to execute commands with `php_exec`
|
|
php_exec() {
|
|
(cd "$install_dir" && ynh_exec_as "$app" \
|
|
php${phpversion} "$install_dir/bin/console" --no-interaction --env=prod "$@")
|
|
}
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|