From 2c46afefd0f7557ac18dcfdc90b74b83e5c3fd3a Mon Sep 17 00:00:00 2001 From: Roman Gorshunov Date: Mon, 1 Oct 2018 15:58:21 +0200 Subject: [PATCH] Fix: override of terminal options for pegleg.sh This takes care of removing -t option when running the script with automated system (e.g. Vagrant) Change-Id: I4ecc4779a11255d52e51b6b28923659a3baa1dd4 --- manifests/common/deploy-airship.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/common/deploy-airship.sh b/manifests/common/deploy-airship.sh index c8f58682..64437df6 100755 --- a/manifests/common/deploy-airship.sh +++ b/manifests/common/deploy-airship.sh @@ -201,7 +201,7 @@ function install_dependencies() { function run_pegleg_collect() { # Runs pegleg collect to get the documents combined - IMAGE=${PEGLEG_IMAGE} ${PEGLEG} site -p /workspace/airship-in-a-bottle/deployment_files collect ${TARGET_SITE} -s /workspace/collected + IMAGE=${PEGLEG_IMAGE} TERM_OPTS="-i" ${PEGLEG} site -p /workspace/airship-in-a-bottle/deployment_files collect ${TARGET_SITE} -s /workspace/collected } function generate_certs() { @@ -235,7 +235,7 @@ function generate_certs() { function lint_design() { # After the certificates are in the deployment files run a pegleg lint - IMAGE=${PEGLEG_IMAGE} ${PEGLEG} lint -p /workspace/airship-in-a-bottle/deployment_files + IMAGE=${PEGLEG_IMAGE} TERM_OPTS="-i" ${PEGLEG} lint -p /workspace/airship-in-a-bottle/deployment_files } function generate_genesis() {