mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
This commit is contained in:
committed by
Aiden McClelland
parent
9f1d140911
commit
7a16917971
@@ -249,7 +249,8 @@ impl DockerAction {
|
||||
continue;
|
||||
};
|
||||
let src = volume.path_for(ctx, pkg_id, pkg_version, volume_id);
|
||||
if tokio::fs::metadata(&src).await.is_err() {
|
||||
if let Err(e) = tokio::fs::metadata(&src).await {
|
||||
tracing::warn!("{} not mounted to container: {}", src.display(), e);
|
||||
continue;
|
||||
}
|
||||
res.push(OsStr::new("--mount").into());
|
||||
|
||||
Reference in New Issue
Block a user