summaryrefslogtreecommitdiff
path: root/cli/args/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r--cli/args/flags.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 3708f0d98..aa59eb36a 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -301,7 +301,7 @@ pub struct VendorFlags {
pub struct PublishFlags {
pub token: Option<String>,
pub dry_run: bool,
- pub no_fast_check: bool,
+ pub no_zap: bool,
}
#[derive(Clone, Debug, Eq, PartialEq)]
@@ -2386,9 +2386,9 @@ fn publish_subcommand() -> Command {
.action(ArgAction::SetTrue),
)
.arg(
- Arg::new("no-fast-check")
- .long("no-fast-check")
- .help("Skip Fast Check compatibility validation")
+ Arg::new("no-zap")
+ .long("no-zap")
+ .help("Skip Zap compatibility validation")
.action(ArgAction::SetTrue),
)
})
@@ -3824,7 +3824,7 @@ fn publish_parse(flags: &mut Flags, matches: &mut ArgMatches) {
flags.subcommand = DenoSubcommand::Publish(PublishFlags {
token: matches.remove_one("token"),
dry_run: matches.get_flag("dry-run"),
- no_fast_check: matches.get_flag("no-fast-check"),
+ no_zap: matches.get_flag("no-zap"),
});
}