From 6070219b1a847c44bef9c4d93940d23b8ce19dc6 Mon Sep 17 00:00:00 2001 From: Qubasa Date: Mon, 17 Feb 2025 14:10:22 +0700 Subject: [PATCH] clan-cli: Remove set -x from pytest script --- pkgs/clan-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/clan-cli/default.nix b/pkgs/clan-cli/default.nix index 027a59593..95446fe0d 100644 --- a/pkgs/clan-cli/default.nix +++ b/pkgs/clan-cli/default.nix @@ -130,7 +130,7 @@ pythonRuntime.pkgs.buildPythonApplication { clan-pytest-without-core = runCommand "clan-pytest-without-core" { nativeBuildInputs = testDependencies; } '' - set -ux -o pipefail + set -u -o pipefail cp -r ${source} ./src chmod +w -R ./src cd ./src @@ -165,7 +165,7 @@ pythonRuntime.pkgs.buildPythonApplication { }; } '' - set -ux -o pipefail + set -u -o pipefail cp -r ${source} ./src chmod +w -R ./src cd ./src