mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 06:21:30 +03:00
fix(paths): fix computation of lock and cache file paths
This commit is contained in:
parent
63fe4be09c
commit
e2470b3171
@ -12,9 +12,9 @@
|
||||
};
|
||||
paths = {
|
||||
lockFileAbs =
|
||||
config.paths.projectRoot + "/" + config.paths.package + "/" + config.paths.lockFile;
|
||||
config.paths.projectRoot + "/${config.paths.package}/${config.paths.lockFile}";
|
||||
cacheFileAbs =
|
||||
config.paths.projectRoot + "/" + config.paths.package + "/" + config.paths.cacheFile;
|
||||
config.paths.projectRoot + "/${config.paths.package}/${config.paths.cacheFile}";
|
||||
|
||||
# - identify the root by searching for the marker config.paths.projectRootFile in the current dir and parents
|
||||
# - if the marker file is not found, raise an error
|
||||
|
Loading…
Reference in New Issue
Block a user