File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ pkgs.writeScriptBin "devenv" ''
19
19
20
20
case $command in
21
21
up)
22
- procfilescript=$(nix build '.#${ shellPrefix ( config . _module . args . name or "default" ) } devenv-up' --no-link --print-out-paths --no-pure-eval )
22
+ procfilescript=$(nix build '.#${ shellPrefix ( config . _module . args . name or "default" ) } devenv-up' --no-link --print-out-paths --override-input devenv-root path:.devenv/state/pwd )
23
23
if [ "$(cat $procfilescript|tail -n +2)" = "" ]; then
24
24
echo "No 'processes' option defined: https://devenv.sh/processes/"
25
25
exit 1
@@ -29,7 +29,7 @@ pkgs.writeScriptBin "devenv" ''
29
29
;;
30
30
31
31
test)
32
- testscript=$(nix build '.#${ shellPrefix ( config . _module . args . name or "default" ) } devenv-test' --no-link --print-out-paths --no-pure-eval )
32
+ testscript=$(nix build '.#${ shellPrefix ( config . _module . args . name or "default" ) } devenv-test' --no-link --print-out-paths --override-input devenv-root path:.devenv/state/pwd )
33
33
exec $testscript "$@"
34
34
;;
35
35
You can’t perform that action at this time.
0 commit comments