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