Skip to content

Commit

Permalink
Remove temp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Nov 29, 2022
1 parent 7fda67f commit 1032203
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ once_cell = "1.15"
semver = "1"
chrono = "0.4"
wildmatch = "2.1.1"
tempfile = "3.3.0"
5 changes: 0 additions & 5 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pub mod crosstool;
pub mod hooks;
pub mod install_git_hooks;
pub mod target_info;
pub mod temp;
pub mod util;

use ci::CiJob;
Expand All @@ -24,7 +23,6 @@ use self::crosstool::ConfigureCrosstool;
use self::hooks::{Check, Test};
use self::install_git_hooks::InstallGitHooks;
use self::target_info::TargetInfo;
use self::temp::MakeTempDir;

#[derive(Parser, Debug)]
#[clap(version, about, long_about = None)]
Expand Down Expand Up @@ -67,8 +65,6 @@ enum Commands {
ValidateChangelog(ValidateChangelog),
/// Code generation
Codegen(Codegen),
/// Create temporary directory
MakeTempDir(MakeTempDir),
}

fn is_toolchain(toolchain: &str) -> cross::Result<String> {
Expand Down Expand Up @@ -135,7 +131,6 @@ pub fn main() -> cross::Result<()> {
changelog::validate_changelog(args, &mut msg_info)?;
}
Commands::Codegen(args) => codegen::codegen(args)?,
Commands::MakeTempDir(args) => temp::make_temp_dir(args)?,
}

Ok(())
Expand Down

0 comments on commit 1032203

Please sign in to comment.