You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by se...@apache.org on 2023/03/30 15:31:10 UTC

[comdev-site] branch master updated: Show which hugo is around

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/comdev-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ddd534  Show which hugo is around
5ddd534 is described below

commit 5ddd534ec3a29ab5808345d350a2d13a87e8a40d
Author: Sebb <se...@apache.org>
AuthorDate: Thu Mar 30 16:31:00 2023 +0100

    Show which hugo is around
---
 Jenkinsfile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9762588..1862985 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -56,6 +56,8 @@ pipeline {
         stage('Build') {
             steps {
                 script {
+                    sh 'for i in $(which -a hugo) ; do echo $i; $i version; done'
+                    sh 'hugo version'
                     sh "hugo --destination ${env.OUT_DIR}"
                     sh "${env.PAGEFIND_DIR}/bin/pagefind --source ${env.OUT_DIR}"
                 }