We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9600467 commit a087f0bCopy full SHA for a087f0b
src/docker/shared.rs
@@ -305,7 +305,9 @@ impl Directories {
305
Some(store) => {
306
eyre::bail!("unable to find provided nix-store directory {store:?}");
307
}
308
- None if cfg!(target_os = "linux") && default_nix_store.exists() => Some(default_nix_store),
+ None if cfg!(target_os = "linux") && default_nix_store.exists() => {
309
+ Some(default_nix_store)
310
+ }
311
None => None,
312
};
313
0 commit comments