Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Add cargo xtask rebuild-elfs #411

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix name
  • Loading branch information
Urhengulas committed Jun 15, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 32e2debb2a33808c059610167ace3709ae189fce
File renamed without changes.
4 changes: 2 additions & 2 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
//!
//! cargo xtask build-tests

mod build_tests;
mod build_elfs;

use clap::Parser;

@@ -15,6 +15,6 @@ enum Command {

fn main() {
match Command::parse() {
Command::BuildElfs => build_tests::run(),
Command::BuildElfs => build_elfs::run(),
}
}