Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBatty committed Jun 19, 2024
1 parent 3f6e56d commit 5b6f6ae
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/commands/toolchain.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use crate::ops::fuelup_toolchain::{
install::install, new::new, uninstall::uninstall,
};
use crate::ops::fuelup_toolchain::{install::install, new::new, uninstall::uninstall};
use crate::target_triple::TargetTriple;
use crate::toolchain::RESERVED_TOOLCHAIN_NAMES;
use anyhow::{bail, Result};
Expand Down Expand Up @@ -62,10 +60,6 @@ pub fn exec(command: ToolchainCommand) -> Result<()> {
ToolchainCommand::Install(command) => install(command)?,
ToolchainCommand::New(command) => new(command)?,
ToolchainCommand::Uninstall(command) => uninstall(command)?,
<<<<<<< HEAD
=======
ToolchainCommand::ListRevisions => list_revisions()?,
>>>>>>> c78adb1 (clippy)
};

Ok(())
Expand Down

0 comments on commit 5b6f6ae

Please sign in to comment.