From 10cb44f7aaddee36862a958c58dd1323fe3298ff Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Sat, 23 Nov 2024 15:44:41 +0100 Subject: [PATCH] fix: fix `--keep_going` -> `--keep-going`, add to CHANGELOG.md --- CHANGELOG.md | 1 + src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2d2324..091efdb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +- allow continue-on-error (add `-k`/`--keep-going`) - allow executing multiple tasks (add `-m`/`--multiple-tasks`) ## [0.1.24] - 2024-09-13 diff --git a/src/cli.rs b/src/cli.rs index 625dd09d..3c291e8d 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -155,7 +155,7 @@ pub fn clap() -> clap::Command { Arg::new("keep_going") .help("keep going until N jobs / tasks fail (0 means infinity)") .short('k') - .long("keep_going") + .long("keep-going") .env("LAZE_KEEP_GOING") .num_args(1) .default_value("1")