mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
removes all dbg! macros
This commit is contained in:
@@ -208,18 +208,18 @@ impl DockerAction {
|
||||
} else {
|
||||
continue;
|
||||
};
|
||||
let src = dbg!(volume.path_for(ctx, pkg_id, pkg_version, volume_id));
|
||||
let src = volume.path_for(ctx, pkg_id, pkg_version, volume_id);
|
||||
if tokio::fs::metadata(&src).await.is_err() {
|
||||
continue;
|
||||
}
|
||||
res.push(OsStr::new("--mount").into());
|
||||
res.push(
|
||||
dbg!(OsString::from(format!(
|
||||
OsString::from(format!(
|
||||
"type=bind,src={},dst={}{}",
|
||||
src.display(),
|
||||
dst.display(),
|
||||
if volume.readonly() { ",readonly" } else { "" }
|
||||
)))
|
||||
))
|
||||
.into(),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user