Skip to content

Commit

Permalink
Get rid of warnings (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
dottorblaster authored Sep 19, 2023
1 parent 75c8331 commit 5fcbf62
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
}
Expand All @@ -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)?;
Expand Down

0 comments on commit 5fcbf62

Please sign in to comment.