Skip to content

Commit 9ebbb9b

Browse files
enedEgor
authored andcommitted
adds missing [[ to elif statement in scripts/incremental_build.sh (flutter#2358)
1 parent fa43d46 commit 9ebbb9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/incremental_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ readonly CUSTOM_FLAG=$(IFS=, ; echo "${CUSTOM_ANALYSIS_PLUGINS[*]}")
2626
ACTIONS=("$@")
2727
if [[ "${#ACTIONS[@]}" == 0 ]]; then
2828
ACTIONS=("analyze" "--custom-analysis" "$CUSTOM_FLAG" "test" "java-test")
29-
elif [ "${ACTIONS[@]}" == "analyze" ]; then
29+
elif [[ "${ACTIONS[@]}" == "analyze" ]]; then
3030
ACTIONS=("analyze" "--custom-analysis" "$CUSTOM_FLAG")
3131
fi
3232

0 commit comments

Comments
 (0)