Skip to content

Commit

Permalink
Fix bash lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andytson-inviqa committed Nov 19, 2021
1 parent 354f6de commit 4649cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harness/scripts/mutagen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ clean_existing_projects()

local SYNC_NAME
local SYNC_LIST
for SYNC_NAME in ${SYNC_NAMES[*]}; do
for SYNC_NAME in "${SYNC_NAMES[@]}"; do
# List syncs based on name
SYNC_LIST="$(mutagen sync list "$SYNC_NAME" 2> /dev/null || true)"
# Check if there are entries left
Expand All @@ -98,7 +98,7 @@ clean_existing_projects()
local FORWARD_LIST
local CONTAINER_NAMES_REGEX
CONTAINER_NAMES_REGEX="$(join_by_character "\|" "${CONTAINER_NAMES[@]}")"
for FORWARD_NAME in ${FORWARD_NAMES[*]}; do
for FORWARD_NAME in "${FORWARD_NAMES[@]}"; do
# List forwards based on name
FORWARD_LIST="$(mutagen forward list "$FORWARD_NAME" 2> /dev/null || true)"
# Check if there are entries left
Expand Down

0 comments on commit 4649cb6

Please sign in to comment.