From cfcfa01a64ed88b8e01e10b859e316c8de7d11c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 21 Mar 2019 17:17:28 +0100 Subject: [PATCH] make sourcing nix quiet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/utils.groovy | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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}\' """ }