From 88acb15c1c1203b78481d946d40de7af4d995b23 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 29 May 2024 06:30:22 -0500 Subject: [PATCH] Fix command line args in scripts, per typer --- rattail_fabric2/deploy/luigi/cron-overnight.sh.mako | 3 +-- rattail_fabric2/deploy/luigi/restart-overnight.sh.mako | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/rattail_fabric2/deploy/luigi/cron-overnight.sh.mako b/rattail_fabric2/deploy/luigi/cron-overnight.sh.mako index b2587bf..5735e93 100755 --- a/rattail_fabric2/deploy/luigi/cron-overnight.sh.mako +++ b/rattail_fabric2/deploy/luigi/cron-overnight.sh.mako @@ -4,8 +4,7 @@ cd ${envroot} export RATTAIL_CONFIG_FILES=${overnight_conf} -bin/rattail overnight -k ${automation.lower()} <%text>\ - --no-versioning <%text>\ +bin/rattail --no-versioning overnight -k ${automation.lower()} <%text>\ % if email_key is not Undefined and email_key: --email-key '${email_key}' <%text>\ % endif diff --git a/rattail_fabric2/deploy/luigi/restart-overnight.sh.mako b/rattail_fabric2/deploy/luigi/restart-overnight.sh.mako index ed53b08..c58908a 100644 --- a/rattail_fabric2/deploy/luigi/restart-overnight.sh.mako +++ b/rattail_fabric2/deploy/luigi/restart-overnight.sh.mako @@ -4,8 +4,7 @@ cd ${envroot} export RATTAIL_CONFIG_FILES=${overnight_conf} -bin/rattail overnight -k ${automation.lower()} <%text>\ - --no-versioning <%text>\ +bin/rattail --no-versioning overnight -k ${automation.lower()} <%text>\ % if email_key is not Undefined and email_key: --email-key '${email_key}' <%text>\ % endif