From da18b11b05b6196376d5387b879d28b8da20f734 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 8 Aug 2011 14:08:38 +0000 Subject: * On FreeBSD, ‘touch’ is not in the test $PATH, so don't use it. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/secure-drv-outputs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/secure-drv-outputs.nix b/tests/secure-drv-outputs.nix index da4012eb41c0..b4ac8ff531f8 100644 --- a/tests/secure-drv-outputs.nix +++ b/tests/secure-drv-outputs.nix @@ -7,7 +7,7 @@ with import ./config.nix; builder = builtins.toFile "builder" '' mkdir $out - touch $out/good + echo > $out/good ''; }; @@ -16,7 +16,7 @@ with import ./config.nix; builder = builtins.toFile "builder" '' mkdir $out - touch $out/bad + echo > $out/bad ''; }; -- cgit 1.4.1