nix(refactor): Add withPath to checkedShellScript

This commit is contained in:
Wolfgang Walther
2021-08-15 12:35:52 +02:00
committed by Remo
parent 4e4548d702
commit 0511e99dd4
4 changed files with 9 additions and 6 deletions
+1 -2
View File
@@ -14,10 +14,9 @@ let
name = "postgrest-test-memory";
docs = "Run the memory tests.";
inRootDir = true;
withPath = [ postgrestProfiled curl ];
}
''
export PATH="${postgrestProfiled}/bin:${curl}/bin:$PATH"
${withTools.latest} test/memory-tests.sh
'';