summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@noreply.codeberg.org>2024-03-16 15:44:53 +0000
committerLars Wirzenius <liw@noreply.codeberg.org>2024-03-16 15:44:53 +0000
commit6bbb817ea03ca7fcc60637a7b5b144e5cc52f911 (patch)
treeb2c39ae088fe9021fd5341b7deb407b133d9c534
parent014eb4b62f50b6857c32d4326a80bc23cfb1780c (diff)
parent94a00d62010af69315f32e2067907e162f5a3d9e (diff)
downloadambient-driver-6bbb817ea03ca7fcc60637a7b5b144e5cc52f911.tar.gz
Merge pull request 'feat: allow --dput as an alias for --dput-target' (#86) from dput into main
Reviewed-on: https://codeberg.org/ambient/ambient-driver/pulls/86
-rw-r--r--src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs
index 1d4e965..c3258f1 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -62,11 +62,11 @@ pub struct RunCommand {
log: Option<PathBuf>,
/// rsync target for publishing ikiwiki output.
- #[clap(long)]
+ #[clap(long, alias = "rsync")]
target: Option<String>,
/// dput target for publishing .deb package.
- #[clap(long)]
+ #[clap(long, alias = "dput")]
dput_target: Option<String>,
/// Path to `run-ci` binary to use to run CI in VM.