default: properly set outPath when evaluating in store
This commit is contained in:
parent
09f1929960
commit
f8a0c6a50c
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,8 @@ let
|
||||||
selfInStore = if selfInStore'.success then selfInStore'.value else gitlessSelfInStore;
|
selfInStore = if selfInStore'.success then selfInStore'.value else gitlessSelfInStore;
|
||||||
in
|
in
|
||||||
if !(evaluatingInStore) then { ... }@args: import selfInStore ({
|
if !(evaluatingInStore) then { ... }@args: import selfInStore ({
|
||||||
selfPath = selfInStore // {
|
selfPath = {
|
||||||
|
outPath = builtins.toString ./.;
|
||||||
selfMode = "store";
|
selfMode = "store";
|
||||||
};
|
};
|
||||||
} // args )
|
} // args )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue