aboutsummaryrefslogtreecommitdiff
path: root/tests/ca
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-06-22 22:41:14 +0200
committerEelco Dolstra <edolstra@gmail.com>2022-06-22 23:33:15 +0200
commit8bbbb6e737d854649322146f1ff1cf2a87d9de6a (patch)
treeb5c084459827646c5a4bb3a9ed3f6fa884eab7ca /tests/ca
parentf6cf644e5f7da4a0391b10fb31b4b4661c5439dc (diff)
Enable/fix tests in nix-static
pkgsStatic is apparently considered a cross environment, so checkPhase and installCheckPhase are disabled even when we ask for them.
Diffstat (limited to 'tests/ca')
-rw-r--r--tests/ca/content-addressed.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ca/content-addressed.nix b/tests/ca/content-addressed.nix
index 31c144ae0..81bc4bf5c 100644
--- a/tests/ca/content-addressed.nix
+++ b/tests/ca/content-addressed.nix
@@ -75,7 +75,7 @@ rec {
buildCommand = ''
mkdir -p $out/bin
echo ${rootCA} # Just to make it depend on it
- echo "" > $out/bin/${name}
+ echo "#! ${shell}" > $out/bin/${name}
chmod +x $out/bin/${name}
'';
};