From 31211516cbb924d5798e0cf28f30f5825471a54a Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Wed, 28 May 2025 15:07:28 +0300 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=BE=D0=BB=D0=B5=D0=B5=20=D0=BB=D0=B0?= =?UTF-8?q?=D0=BA=D0=BE=D0=BD=D0=B8=D1=87=D0=BD=D0=BE=D0=B5=20=D0=BD=D0=B0?= =?UTF-8?q?=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D1=84=D0=BB=D0=B0=D0=B3=D0=BE=D0=B2:=20no-presnag=20->=20no-pr?= =?UTF-8?q?e,=20no-postsnag=20->=20no-post?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/app.d | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/app.d b/source/app.d index ef30132..6332a02 100644 --- a/source/app.d +++ b/source/app.d @@ -63,11 +63,11 @@ int main(string[] args) "must contain an email address" ) ) - .add(new Flag(null, "no-presnag", "Execution without running pre-execution commands") + .add(new Flag(null, "no-pre", "Execution without running pre-execution commands") .name("nopre") .optional ) - .add(new Flag(null, "no-postsnag", "Execution without running post-execution commands") + .add(new Flag(null, "no-post", "Execution without running post-execution commands") .name("nopost") .optional ) @@ -104,11 +104,11 @@ int main(string[] args) "must contain an email address" ) ) - .add(new Flag(null, "no-presnag", "Execution without running pre-execution commands") + .add(new Flag(null, "no-pre", "Execution without running pre-execution commands") .name("nopre") .optional ) - .add(new Flag(null, "no-postsnag", "Execution without running post-execution commands") + .add(new Flag(null, "no-post", "Execution without running post-execution commands") .name("nopost") .optional ) @@ -129,11 +129,11 @@ int main(string[] args) ) .add(new Command("restore", "Restore to the specified snapshot state") .add(new Argument("snapshot", "Specify snapshot hash").required) - .add(new Flag(null, "no-presnag", "Execution without running pre-execution commands") + .add(new Flag(null, "no-pre", "Execution without running pre-execution commands") .name("nopre") .optional ) - .add(new Flag(null, "no-postsnag", "Execution without running post-execution commands") + .add(new Flag(null, "no-post", "Execution without running post-execution commands") .name("nopost") .optional )