diff --git a/src/main.rs b/src/main.rs index 5c13957..c3e88ac 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,7 +49,7 @@ fn main() -> Result<()> { match &cli.command { Commands::Exec { set, command } => exec(set, command.trim()), - Commands::Save { set, command } => todo!(), + Commands::Save {.. } => todo!(), Commands::Build { set, path } => build(set, path), } } @@ -70,10 +70,6 @@ fn exec(set: &str, command: &str) -> Result<()> { } } -fn save(command: String, set: String) { - todo!() -} - fn build(set_path: &str, path: &str) -> Result<()> { let bin_path = PathBuf::from(path).join("bin"); fs::create_dir_all(&bin_path)?;