Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions industrial_ci/src/builders/catkin_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function builder_run_build {
local extend=$1; shift
local ws=$1; shift
local -a opts
if [ "$VERBOSE_OUTPUT" != false ]; then
if [ "${VERBOSE_OUTPUT:-false}" != false ]; then
opts+=("-vi")
fi
ici_exec_in_workspace "$extend" "$ws" catkin config --install
Expand All @@ -34,7 +34,7 @@ function builder_run_tests {
local extend=$1; shift
local ws=$1; shift
local -a opts
if [ "$VERBOSE_TESTS" != false ]; then
if [ "${VERBOSE_TESTS:-false}" != false ]; then
opts+=(-v)
fi
if [ "$IMMEDIATE_TEST_OUTPUT" == true ]; then
Expand Down