mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 09:04:37 +03:00
fix(v1/nodejs): bug in path concatenation
This commit is contained in:
parent
adf43d2708
commit
411c79097f
@ -19,7 +19,7 @@ in {
|
||||
description = ''
|
||||
The package.json file to use.
|
||||
'';
|
||||
default = cfg.source + /package.json;
|
||||
default = cfg.source + "/package.json";
|
||||
};
|
||||
packageJson = {
|
||||
type = t.attrs;
|
||||
@ -30,7 +30,7 @@ in {
|
||||
description = ''
|
||||
The package.json file to use.
|
||||
'';
|
||||
default = cfg.source + /package-lock.json;
|
||||
default = cfg.source + "/package-lock.json";
|
||||
};
|
||||
packageLock = {
|
||||
type = t.attrs;
|
||||
|
Loading…
Reference in New Issue
Block a user