diff options
author | James Gu <james.gu@att.com> | 2020-11-19 20:14:36 -0800 |
---|---|---|
committer | James Gu <james.gu@att.com> | 2020-11-19 20:15:51 -0800 |
commit | 06a9607c23faae93e9e95c4fec4f8f1566841279 (patch) | |
tree | 14214c4242ebe48fec1d5d080724aa64ff3d09fe | |
parent | 7ceb4a376a68e263a16d4305ac2dcb9d96fe90fa (diff) |
Remove asking user confirmation to cleanup genesis node
Thsi allows the gate job to run w/o user input.
Change-Id: I8f5d1263290669af05fc08fac2ff92732dedb354
Signed-off-by: James Gu <james.gu@att.com>
-rwxr-xr-x | tools/deploy.sh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/deploy.sh b/tools/deploy.sh index 9bf1899..b27607e 100755 --- a/tools/deploy.sh +++ b/tools/deploy.sh @@ -248,13 +248,6 @@ case "$2" in pre_genesis ;; 'deploy_site') - read -n 1 -p "This script will clean up the genesis node. Continue (Y/N) ?" input - case $input in - [Yy] ) break;; - [Nn] ) exit 1;; - * ) echo "Please answer yes or no."; exit 1; - esac - clone_repos pegleg_collect promenade_bundle |