mirror of
https://github.com/YunoHost-Apps/cachet_ynh.git
synced 2024-09-03 18:16:03 +02:00
* Version 2 (#32) * v2 * Auto-update README * v2 * fix * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update _common.sh * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org>
23 lines
643 B
Bash
23 lines
643 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
# Execute a command with occ
|
|
exec_artisan() {
|
|
(cd "$install_dir" &&
|
|
php$phpversion artisan $@ --quiet --no-interaction)
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|