main
michal 2 years ago
parent 1e12021241
commit a233523165

@ -1,6 +1,6 @@
[package] [package]
name = "Malachite" name = "Malachite"
version = "1.2.0" version = "1.3.0"
authors = [ "michal <michal@tar.black>" ] authors = [ "michal <michal@tar.black>" ]
edition = "2021" edition = "2021"
description = "Packaging tool for pacman repositories" description = "Packaging tool for pacman repositories"

@ -25,7 +25,7 @@ pub enum Operation {
packages: Vec<String>, packages: Vec<String>,
/// Builds all packages in mlc.toml (except if -x is specified) /// Builds all packages in mlc.toml (except if -x is specified)
#[clap(long="all", action=ArgAction::Append, takes_value=true, conflicts_with="package(s)")] #[clap(long="all", takes_value=false, action=ArgAction::SetTrue, conflicts_with="package(s)")]
all: bool, all: bool,
/// Excludes packages from given operation /// Excludes packages from given operation
@ -57,7 +57,7 @@ pub enum Operation {
packages: Vec<String>, packages: Vec<String>,
/// Pulls from all git repositories from mlc.toml branching from current directory /// Pulls from all git repositories from mlc.toml branching from current directory
#[clap(long="all", action=ArgAction::SetTrue)] #[clap(long="all", action=ArgAction::SetTrue, conflicts_with="package(s)")]
all: bool, all: bool,
}, },

Loading…
Cancel
Save