diff options
author | 2023-04-16 11:02:49 +0200 | |
---|---|---|
committer | 2023-04-16 13:08:46 +0200 | |
commit | 66a3d02b4585a76615d750c33a37edd5e8fd30e6 (patch) | |
tree | 075ebf35fc307e0e938673bae47974847a78e2fb /xtask/src | |
parent | b59bf686c1e10bb8068d89e43779d7777f553c48 (diff) | |
download | rtic-66a3d02b4585a76615d750c33a37edd5e8fd30e6.tar.gz rtic-66a3d02b4585a76615d750c33a37edd5e8fd30e6.tar.zst rtic-66a3d02b4585a76615d750c33a37edd5e8fd30e6.zip |
Rename cargo_commands -> run
Rename command -> cargo_command
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/argument_parsing.rs | 2 | ||||
-rw-r--r-- | xtask/src/cargo_command.rs (renamed from xtask/src/command.rs) | 2 | ||||
-rw-r--r-- | xtask/src/main.rs | 10 | ||||
-rw-r--r-- | xtask/src/run.rs (renamed from xtask/src/cargo_commands.rs) | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index 738168e1..8c8f7d2a 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -1,4 +1,4 @@ -use crate::{command::CargoCommand, Target, ARMV6M, ARMV7M, ARMV8MBASE, ARMV8MMAIN}; +use crate::{cargo_command::CargoCommand, Target, ARMV6M, ARMV7M, ARMV8MBASE, ARMV8MMAIN}; use clap::{Args, Parser, Subcommand}; use core::fmt; diff --git a/xtask/src/command.rs b/xtask/src/cargo_command.rs index 33d07030..cd38566e 100644 --- a/xtask/src/command.rs +++ b/xtask/src/cargo_command.rs @@ -1,7 +1,7 @@ use log::{error, info, Level}; use crate::{ - argument_parsing::Globals, cargo_commands::FinalRunResult, ExtraArguments, RunResult, Target, + argument_parsing::Globals, xtasks::FinalRunResult, ExtraArguments, RunResult, Target, TestRunError, }; use core::fmt; diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 2f350795..09bf8c72 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -1,11 +1,11 @@ mod argument_parsing; mod build; -mod cargo_commands; -mod command; +mod xtasks; +mod cargo_command; use argument_parsing::{ExtraArguments, Globals}; use clap::Parser; -use command::OutputMode; +use cargo_command::OutputMode; use core::fmt; use diffy::{create_patch, PatchFormatter}; use std::{ @@ -23,8 +23,8 @@ use log::{error, info, log_enabled, trace, Level}; use crate::{ argument_parsing::{Backends, BuildOrCheck, Cli, Commands}, build::init_build_dir, - cargo_commands::*, - command::{handle_results, run_command, run_successful, CargoCommand}, + xtasks::*, + cargo_command::{handle_results, run_command, run_successful, CargoCommand}, }; #[derive(Debug, Clone, Copy)] diff --git a/xtask/src/cargo_commands.rs b/xtask/src/run.rs index e2982e4f..32fafc84 100644 --- a/xtask/src/cargo_commands.rs +++ b/xtask/src/run.rs @@ -2,7 +2,7 @@ use std::path::PathBuf; use crate::{ argument_parsing::{Backends, BuildOrCheck, ExtraArguments, Globals, PackageOpt, TestMetadata}, - command::{BuildMode, CargoCommand}, + cargo_command::{BuildMode, CargoCommand}, command_parser, RunResult, }; use log::error; |