diff --git a/scripts/_common.sh b/scripts/_common.sh index 7f17471..594d494 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -8,6 +8,7 @@ pkg_dependencies="postgresql" nodejs_version=16 +GO_VERSION="1.18" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 7ee6b9e..e6f8f95 100755 --- a/scripts/install +++ b/scripts/install @@ -91,6 +91,9 @@ then # Install Yarn ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg" + + # Install Go + ynh_exec_warn_less ynh_install_go --go_version=$GO_VERSION fi #=================================================