We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf25eb commit a3eed25Copy full SHA for a3eed25
bin/openshift-include.sh
@@ -15,7 +15,8 @@ function ocVersionCheck {
15
16
for ((i = 0; i < ${#allArr[@]}; i++)); do
17
# Split the line into an array
18
- verArr=("${allArr[$i]}")
+ # shellcheck disable=SC2206
19
+ verArr=(${allArr[$i]})
20
if [ ${#verArr[@]} -eq 3 ]; then
21
verType="${verArr[0]}"
22
ver="${verArr[2]}"
0 commit comments