Skip to content

Commit

Permalink
add xtask target to generate dummy versions of files for formatting c…
Browse files Browse the repository at this point in the history
…hecks
  • Loading branch information
bunnie committed Jan 14, 2024
1 parent cee3209 commit 9234b11
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
mod app_manifest;
mod versioning;
use app_manifest::generate_app_menus;
use versioning::*;
mod utils;
use utils::*;
Expand Down Expand Up @@ -424,6 +425,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
// ---- other single-purpose commands ----
Some("generate-locales") => generate_locales()?,
Some("wycheproof-import") => whycheproof_import()?,
Some("dummy-template") => generate_app_menus(&Vec::new()),
_ => print_help(),
}
builder.build()?;
Expand Down Expand Up @@ -535,6 +537,7 @@ Other commands:
wycheproof-import generate binary test vectors for engine-25519 from whycheproof-import/x25519.json
install-toolkit installs Xous toolkit with no prompt, useful in CI. Specify `--force` to remove existing toolchains
compile-apps Just compiles the apps specified in [cratespecs], for example in order to use app server
dummy-template Generate dummy templates for formatting and checking purposes
Note: By default, the `ticktimer` will get rebuilt every time. You can skip this by appending `--no-timestamp` to the command.
"
Expand Down

0 comments on commit 9234b11

Please sign in to comment.