From 8024e79ac60efd98abe2cfe2ec754a7af7bd4e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 24 Mar 2023 21:07:46 +0100 Subject: [PATCH 1/4] Update ynh_install_go --- scripts/ynh_install_go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ynh_install_go b/scripts/ynh_install_go index d9e3555..730f93b 100644 --- a/scripts/ynh_install_go +++ b/scripts/ynh_install_go @@ -70,7 +70,7 @@ ynh_use_go () { ynh_go_load_path="PATH=$PATH" # Sets the local application-specific Go version - pushd $final_path + pushd $install_dir $goenv_install_dir/bin/goenv local $go_version popd } From 2297812c6afe2a6d9f4a10f55a59cebe6e53a4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 24 Mar 2023 21:08:03 +0100 Subject: [PATCH 2/4] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 6769b55..f8b0abd 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Listmonk" description.en = "Newsletter and mailing list manager" description.fr = "Manager de newsletter et mailing list" -version = "2.4.0~ynh2" +version = "2.4.0~ynh3" maintainers = ["Navan Chauhan"] From ed15e9b2c82e5d57a6a0427c60d39f36619ad77b Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 24 Mar 2023 20:08:08 +0000 Subject: [PATCH 3/4] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a998bf6..e6eea0d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Listmonk is a standalone, self-hosted, newsletter and mailing list manager. It is fast, feature-rich, and packed into a single binary. It uses a PostgreSQL (⩾ v9.4) database as its data store. -**Shipped version:** 2.4.0~ynh2 +**Shipped version:** 2.4.0~ynh3 **Demo:** https://demo.listmonk.app/ diff --git a/README_fr.md b/README_fr.md index 57ce9c2..7dbfbcd 100644 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po Listmonk is a standalone, self-hosted, newsletter and mailing list manager. It is fast, feature-rich, and packed into a single binary. It uses a PostgreSQL (⩾ v9.4) database as its data store. -**Version incluse :** 2.4.0~ynh2 +**Version incluse :** 2.4.0~ynh3 **Démo :** https://demo.listmonk.app/ From 08f0ffef44da7098db8c110d3527efc8426bb164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 24 Mar 2023 21:22:22 +0100 Subject: [PATCH 4/4] Update ynh_install_go --- scripts/ynh_install_go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ynh_install_go b/scripts/ynh_install_go index 730f93b..a3e210c 100644 --- a/scripts/ynh_install_go +++ b/scripts/ynh_install_go @@ -28,7 +28,7 @@ export GOENV_ROOT="$goenv_install_dir" # However, $PATH is duplicated into $go_path to outlast any manipulation of $PATH # You can use the variable `$ynh_go_load_path` to quickly load your Go version # in $PATH for an usage into a separate script. -# Exemple: $ynh_go_load_path $final_path/script_that_use_gem.sh` +# Exemple: $ynh_go_load_path $install_dir/script_that_use_gem.sh` # # # Finally, to start a Go service with the correct version, 2 solutions