fix(setEnv): refs #6706 Don't print environment variables

This commit is contained in:
Juan Ferrer 2024-02-01 15:08:48 +01:00
parent 7e0bfd394b
commit 4fd4d2a29d
2 changed files with 5 additions and 2 deletions

5
vars/printEnv.groovy Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env groovy
def call() {
sh 'printenv'
}

View File

@ -11,6 +11,4 @@ def call() {
env.COMMITTER_EMAIL = env.GIT_COMMITTER_EMAIL;
}
}
sh 'printenv'
}