From d9defeaa156fd5cc75e9dc84908f27dc6969ea57 Mon Sep 17 00:00:00 2001 From: mh4ckt3mh4ckt1c4s Date: Sat, 7 Oct 2023 23:11:13 +0200 Subject: [PATCH] Fix outdated mentions to app.src --- scripts/install | 4 ++-- scripts/upgrade | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index cd1d842..8c717e2 100755 --- a/scripts/install +++ b/scripts/install @@ -39,9 +39,9 @@ ynh_script_progression --message="Setting up source files..." --weight=1 ### `ynh_setup_source` is used to install an app from a zip or tar.gz file, ### downloaded from an upstream source, like a git repository. -### `ynh_setup_source` use the file conf/app.src +### `ynh_setup_source` use the file manifest.toml -# Download, check integrity, uncompress and patch the source from app.src +# Download, check integrity, uncompress and patch the source from manifest.toml ynh_setup_source --dest_dir="$install_dir" # $install_dir will automatically be initialized with some decent diff --git a/scripts/upgrade b/scripts/upgrade index 55e1829..ddb8ba3 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -72,7 +72,7 @@ if [ "$upgrade_type" == "UPGRADE_APP" ] then ynh_script_progression --message="Upgrading source files..." --weight=1 - # Download, check integrity, uncompress and patch the source from app.src + # Download, check integrity, uncompress and patch the source from manifest.toml ynh_setup_source --dest_dir="$install_dir" fi