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 6e2c1ff commit 06a7f0fCopy full SHA for 06a7f0f
devenv/src/main.rs
@@ -600,6 +600,8 @@ impl App {
600
601
let status = std::process::Command::new(copy_script)
602
.args(copy_args)
603
+ .stdout(std::process::Stdio::inherit())
604
+ .stderr(std::process::Stdio::inherit())
605
.status()
606
.expect("Failed to run copy script");
607
src/modules/containers.nix
@@ -149,7 +149,7 @@ let
149
};
150
151
# <registry> <args>
152
- mkCopyScript = cfg: pkgs.writeScript "copy-container" ''
+ mkCopyScript = cfg: pkgs.writeShellScript "copy-container" ''
153
container=$1
154
shift
155
0 commit comments