From 6d48536ac5271b14219d4e9adf0710a36564c3ee Mon Sep 17 00:00:00 2001 From: Gustavo Marin Date: Thu, 20 Aug 2020 14:37:33 +0200 Subject: [PATCH] fix --skip-build option for dev command. --- scripts/krectl/cmd_dev.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/krectl/cmd_dev.sh b/scripts/krectl/cmd_dev.sh index b22a5f9ff..9c58e479b 100644 --- a/scripts/krectl/cmd_dev.sh +++ b/scripts/krectl/cmd_dev.sh @@ -13,8 +13,7 @@ cmd_dev() { shift ;; - # WARNING: Doing a hard reset before deploying - --hard|--dracarys) + --skip-build) SKIP_BUILD=1 shift ;; @@ -54,7 +53,7 @@ cmd_dev() { if [ "$SKIP_BUILD" = "0" ]; then cmd_build "$@" else - sleep 30 + sleep 10 fi deploy cmd_login