magicpak 1.4.0

Build minimal docker images without static linking
Documentation
1
2
3
4
5
6
use crate::domain::{Bundle, BundlePath};

pub fn make_directory(bundle: &mut Bundle, path: &str) {
    tracing::info!(%path, "action: make directory");
    bundle.mkdir(BundlePath::projection(&path));
}