Skip to content

Commit

Permalink
cut: remove unused stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Mathias-Boulay <[email protected]>
  • Loading branch information
Mathias-Boulay committed Apr 17, 2024
1 parent fccee09 commit 27bf435
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/fs-gen/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
//! Main module for the initramfs tarball generation
use std::{
path::PathBuf,
str::FromStr,
};
use clap::Parser;
use crate::{cli_args::CliArgs, image_builder::build_new_image};
use clap::Parser;
use std::{path::PathBuf, str::FromStr};

mod cli_args;
mod image_builder;

fn main() {
let args = CliArgs::get_args();

let paths: Vec<PathBuf> =
vec![PathBuf::from_str("../../image-gen/blobs/sha256/layer_1").unwrap()];

build_new_image(&paths, &PathBuf::from_str("./titi").unwrap());
}

0 comments on commit 27bf435

Please sign in to comment.