From 65c15b21ee45ff171b0a0d6b61ed5996228cbe71 Mon Sep 17 00:00:00 2001 From: pmikus Date: Mon, 27 Mar 2023 11:32:02 +0000 Subject: [PATCH] fix(core): Adopt to executor changes Signed-off-by: pmikus Change-Id: I206118daa0383e8a7d160aaf1c3dd53fc3ab9279 --- resources/libraries/bash/function/hugo.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/resources/libraries/bash/function/hugo.sh b/resources/libraries/bash/function/hugo.sh index b2e4387edd..bb749bcf01 100644 --- a/resources/libraries/bash/function/hugo.sh +++ b/resources/libraries/bash/function/hugo.sh @@ -65,13 +65,11 @@ function hugo_init_modules () { # - die - Print to stderr and exit. if ! installed hugo; then - #die "Please install Hugo!" - go_install || die "Failed to install Go!" - hugo_install || die "Failed to install Hugo!" - terraform_install || die "Failed to install Terraform!" + die "Please install Hugo!" fi pushd "${CSIT_DIR}"/docs || die "Pushd failed!" + export PATH=$PATH:/usr/local/go/bin hugo mod get -u || die "Failed to run Hugo mod!" popd || die "Popd failed!" } -- 2.16.6