diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-09-08 21:19:01 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-09-08 21:19:46 +0200 |
commit | 8b810c6a4d80112a2d07cc5599984403d590579d (patch) | |
tree | e00ce454a5323e0b8851a155854a838c15437215 /ci/deploy.sh | |
parent | 91312836e649c24d2d0268f1f5c8aa45fdd79a8d (diff) |
bash scripts: Fix remaining shellcheck warn/errs
Fix/silence all shellcheck errors, except for scripts in
<prototypes/sfc_tacker>.
Change-Id: Idc317cdba0f69b78299f2d3665e72ffc19dd8af5
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 4b64000e1..5e0732aec 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -184,7 +184,7 @@ do if [ -n "${bridge}" ]; then OPNFV_BRIDGES[${OPNFV_BRIDGE_IDX}]="${bridge}" fi - OPNFV_BRIDGE_IDX=$[OPNFV_BRIDGE_IDX + 1] + OPNFV_BRIDGE_IDX=$((OPNFV_BRIDGE_IDX + 1)) done IFS=${OIFS} ;; |