Skip to content

Commit 09f8947

Browse files
added default nix_store value
1 parent f5b4671 commit 09f8947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docker/shared.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ impl Directories {
294294
let xargo = file::canonicalize(&xargo)?;
295295
let nix_store = match nix_store {
296296
Some(store) => Some(file::canonicalize(&store)?),
297-
None => None,
297+
None => Some(PathBuf::from(r"/nix/store")),
298298
};
299299

300300
let cargo = mount_finder.find_mount_path(cargo);

0 commit comments

Comments
 (0)