We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03368f1 commit 85b94c7Copy full SHA for 85b94c7
nix/hydra/demo.nix
@@ -16,7 +16,10 @@
16
17
processes = {
18
prepare-devnet = {
19
- command = "${self}/demo/prepare-devnet.sh";
+ command = pkgs.writeShellScript "prepare-devnet-wrapped" ''
20
+ export PATH=${pkgs.coreutils}/bin:${pkgs.gnused}/bin:${pkgs.findutils}/bin:$PATH
21
+ exec ${self}/demo/prepare-devnet.sh
22
+ '';
23
};
24
cardano-node = {
25
command = ''
0 commit comments