File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -2116,7 +2116,11 @@ for host in "${ALL_HOSTS[@]}"; do
2116
2116
2117
2117
for product in " ${PRODUCTS[@]} " ; do
2118
2118
# Check if we should perform this action.
2119
- if ! [[ $( should_execute_action " ${host} -${product} -build" ) ]]; then
2119
+ tmp_product=${product}
2120
+ if [[ ${tmp_product} == " libdispatch_static" ]]; then
2121
+ tmp_product=libdispatch
2122
+ fi
2123
+ if ! [[ $( should_execute_action " ${host} -${tmp_product} -build" ) ]]; then
2120
2124
continue
2121
2125
fi
2122
2126
@@ -3476,7 +3480,11 @@ for host in "${ALL_HOSTS[@]}"; do
3476
3480
3477
3481
for product in " ${PRODUCTS[@]} " ; do
3478
3482
# Check if we should perform this action.
3479
- if ! [[ $( should_execute_action " ${host} -${product} -install" ) ]]; then
3483
+ tmp_product=${product}
3484
+ if [[ ${tmp_product} == " libdispatch_static" ]]; then
3485
+ tmp_product=libdispatch
3486
+ fi
3487
+ if ! [[ $( should_execute_action " ${host} -${tmp_product} -install" ) ]]; then
3480
3488
continue
3481
3489
fi
3482
3490
You can’t perform that action at this time.
0 commit comments