Add build feature to disable command execution

This CL adds the build feature `disable-command-execution` that enforces the `--print` flag and thereby disables execution of commands.
This commit is contained in:
Ulrich Kautz 2022-01-24 16:34:06 +00:00
parent 9d20d3df36
commit 63e31baa74
3 changed files with 15 additions and 1 deletions

View file

@ -11,6 +11,9 @@ keywords = ["cheatsheets", "terminal", "cli", "tui", "shell"]
categories = ["command-line-utilities"]
license = "Apache-2.0"
[features]
disable-command-execution = []
[badges]
travis-ci = { repository = "denisidoro/navi", branch = "master" }

View file

@ -97,6 +97,7 @@ pub(super) struct ClapConfig {
/// Instead of executing a snippet, prints it to stdout
#[clap(long)]
#[cfg(not(feature = "disable-command-execution"))]
pub print: bool,
/// Returns the best match

View file

@ -136,8 +136,18 @@ impl Config {
self.yaml.style.comment.min_width
}
#[cfg(feature = "disable-command-execution")]
fn print(&self) -> bool {
true
}
#[cfg(not(feature = "disable-command-execution"))]
fn print(&self) -> bool {
self.clap.print
}
pub fn action(&self) -> Action {
if self.clap.print {
if self.print() {
Action::Print
} else {
Action::Execute