From: pmikus Date: Mon, 27 Mar 2023 11:32:02 +0000 (+0000) Subject: fix(core): Adopt to executor changes X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=65c15b21ee45ff171b0a0d6b61ed5996228cbe71 fix(core): Adopt to executor changes Signed-off-by: pmikus Change-Id: I206118daa0383e8a7d160aaf1c3dd53fc3ab9279 --- 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!" }