diff --git a/ci/utils.groovy b/ci/utils.groovy index fbe5dcb2c0..31424ea665 100644 --- a/ci/utils.groovy +++ b/ci/utils.groovy @@ -17,8 +17,11 @@ def getToolVersion(name) { def nix_sh(cmd) { sh """ - . ~/.nix-profile/etc/profile.d/nix.sh && \\ - nix-shell \'${env.WORKSPACE}/default.nix\' --argstr target-os \'${env.TARGET_PLATFORM}\' \\ + set +x + . ~/.nix-profile/etc/profile.d/nix.sh + set -x + nix-shell \'${env.WORKSPACE}/default.nix\' \\ + --argstr target-os \'${env.TARGET_PLATFORM}\' \\ --run \'${cmd}\' """ }