1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cyberchef_ynh.git synced 2024-09-03 18:16:31 +02:00

restore orginal var name after linter fix

This commit is contained in:
oleole39 2024-02-23 01:14:02 +01:00
parent 5a7a30c14e
commit 8c884c0cda
3 changed files with 4 additions and 5 deletions

View file

@ -10,7 +10,6 @@ source _common.sh
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url") upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url")
filename_sourcefile=$(basename $upstream_source_url)
index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf
#================================================= #=================================================

View file

@ -10,7 +10,7 @@ source _common.sh
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url") upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url")
filename_sourcefile=$(basename $upstream_source_url) source_filename=$(basename $upstream_source_url)
index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf
#================================================= #=================================================
@ -21,7 +21,7 @@ index_page=$(basename -s .zip $upstream_source_url).html #this variable will als
ynh_script_progression --message="Setting up source files..." --weight=10 ynh_script_progression --message="Setting up source files..." --weight=10
ynh_setup_source --dest_dir="$install_dir" ynh_setup_source --dest_dir="$install_dir"
ynh_replace_string --match_string="$filename_sourcefile" --replace_string="$upstream_source_url" --target_file="$install_dir/$index_page" #replace link to local source file with link to upstream source file ynh_replace_string --match_string="$source_filename" --replace_string="$upstream_source_url" --target_file="$install_dir/$index_page" #replace link to local source file with link to upstream source file
chown -R $app:www-data "$install_dir" chown -R $app:www-data "$install_dir"
#================================================= #=================================================

View file

@ -12,7 +12,7 @@ source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed) upgrade_type=$(ynh_check_app_version_changed)
upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url") upstream_source_url=$(ynh_read_manifest --manifest_key="resources.sources.main.url")
filename_sourcefile=$(basename $upstream_source_url) source_filename=$(basename $upstream_source_url)
index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf index_page=$(basename -s .zip $upstream_source_url).html #this variable will also populate the template tag __INDEX_PAGE__ in nginx.conf
#================================================= #=================================================
@ -25,7 +25,7 @@ if [ "$upgrade_type" == "UPGRADE_APP" ]
then then
ynh_script_progression --message="Upgrading source files..." --weight=10 ynh_script_progression --message="Upgrading source files..." --weight=10
ynh_setup_source --dest_dir="$install_dir" ynh_setup_source --dest_dir="$install_dir"
ynh_replace_string --match_string="$filename_sourcefile" --replace_string="$upstream_source_url" --target_file="$install_dir/$index_page" #replace link to local source file with link to upstream source file ynh_replace_string --match_string="$source_filename" --replace_string="$upstream_source_url" --target_file="$install_dir/$index_page" #replace link to local source file with link to upstream source file
chown -R $app:www-data "$install_dir" chown -R $app:www-data "$install_dir"
fi fi