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
This commit is contained in:
Roman Gorshunov 2018-10-01 15:58:21 +02:00
parent be1ea3c591
commit 2c46afefd0
1 changed files with 2 additions and 2 deletions

View File

@ -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() {