We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230d7ee commit ffa51b6Copy full SHA for ffa51b6
.github/workflows/ci.yml
@@ -25,8 +25,8 @@ jobs:
25
matrix:
26
rust:
27
- stable
28
- - beta
29
- - nightly
+ # - beta
+ # - nightly
30
31
steps:
32
- name: Checkout code
src/main.rs
@@ -44,7 +44,11 @@ enum Commands {
44
/// Run a command in each repository
45
Run {
46
/// Command to execute
47
- #[arg(value_name = "COMMAND", help = "Command to execute")]
+ #[arg(
48
+ value_name = "COMMAND",
49
+ help = "Command to execute",
50
+ allow_hyphen_values = true
51
+ )]
52
command: Option<String>,
53
54
/// Name of a recipe defined in config.yaml
0 commit comments