chore(module): remove "set -x" addition in script tests

This commit is contained in:
technofab 2025-06-13 15:43:21 +02:00
parent 3bb1764013
commit 001b575f31
No known key found for this signature in database

View file

@ -108,11 +108,7 @@
then val
else
builtins.unsafeDiscardStringContext
(pkgs.writeShellScript "nixtest-${config.name}" ''
# show which line failed the test
set -x
${val}
'').drvPath;
(pkgs.writeShellScript "nixtest-${config.name}" val).drvPath;
};
};
};