1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/photoview_ynh.git synced 2024-09-03 20:05:55 +02:00

Fix bullseye

This commit is contained in:
yalh76 2022-04-06 01:13:51 +02:00
parent e5f08741b9
commit c7c3ce4704
2 changed files with 6 additions and 2 deletions

View file

@ -49,6 +49,9 @@ function set_go_vars {
ynh_install_go --go_version=1.16 ynh_install_go --go_version=1.16
ynh_use_go ynh_use_go
export GOPATH="$final_path/build/go"
export GOCACHE="$final_path/build/.cache"
go_shims_path=$goenv_install_dir/shims go_shims_path=$goenv_install_dir/shims
go_path_full="$go_shims_path":"$(sudo -u $app bash -c 'echo $PATH')" go_path_full="$go_shims_path":"$(sudo -u $app bash -c 'echo $PATH')"
heif_lib_path="$final_path/local/lib":"$(sudo -u $app bash -c 'echo $LIBRARY_PATH')" heif_lib_path="$final_path/local/lib":"$(sudo -u $app bash -c 'echo $LIBRARY_PATH')"

View file

@ -69,8 +69,6 @@ ynh_app_setting_set --app=$app --key=port --value=$port
ynh_script_progression --message="Installing dependencies..." --weight=60 ynh_script_progression --message="Installing dependencies..." --weight=60
install_dependencies install_dependencies
set_go_vars
set_node_vars
#================================================= #=================================================
# CREATE DEDICATED USER # CREATE DEDICATED USER
@ -100,6 +98,9 @@ ynh_app_setting_set --app=$app --key=data_path --value=$data_path
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
setup_sources setup_sources
set_go_vars
set_node_vars
#================================================= #=================================================
# NGINX CONFIGURATION # NGINX CONFIGURATION
#================================================= #=================================================