diff --git a/conf/x86-64.src b/conf/x86-64.src index f399288..d802420 100644 --- a/conf/x86-64.src +++ b/conf/x86-64.src @@ -1,5 +1,5 @@ SOURCE_URL=https://github.com/Plume-org/Plume/releases/download/0.4.0-alpha-4/plume-postgres.tar.gz -SOURCE_SUM=4cb02ae873cf11e04999bf2e2295ff96ea27fe18fdc395c6cce5c8f7cd05ccee +SOURCE_SUM=10b467eb62c862178a8e00e28890b24871ed6d8e77a631eede44bc7c2a1c3bef SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=false diff --git a/scripts/install b/scripts/install index 86b9744..cdca45a 100755 --- a/scripts/install +++ b/scripts/install @@ -16,6 +16,7 @@ source /usr/share/yunohost/helpers ynh_clean_setup () { ynh_clean_check_starting + read -p "key" } # Exit if an error occurs during the execution of the script ynh_abort_if_errors @@ -170,7 +171,7 @@ chown -R "$app":"$app" $final_path export PATH="$PATH:$final_path/.cargo/bin:$final_path/.local/bin:/usr/local/sbin" pushd $final_path/$app - sudo -u "$app" env PATH=$PATH diesel migration run + sudo -u "$app" env PATH=$PATH plm migration run # Add new instance if [ $registration -eq 1 ] diff --git a/scripts/upgrade b/scripts/upgrade index 0c30beb..394b793 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -170,7 +170,7 @@ chown -R "$app":"$app" $final_path export PATH="$PATH:$final_path/.cargo/bin:$final_path/.local/bin:/usr/local/sbin" pushd $final_path/$app - sudo -u "$app" env PATH=$PATH diesel migration run + sudo -u "$app" env PATH=$PATH plm migration run popd #=================================================