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 @@ -2113,7 +2113,11 @@ for host in "${ALL_HOSTS[@]}"; do
2113
2113
2114
2114
for product in " ${PRODUCTS[@]} " ; do
2115
2115
# Check if we should perform this action.
2116
- if ! [[ $( should_execute_action " ${host} -${product} -build" ) ]]; then
2116
+ tmp_product=${product}
2117
+ if [[ ${tmp_product} == " libdispatch_static" ]]; then
2118
+ tmp_product=libdispatch
2119
+ fi
2120
+ if ! [[ $( should_execute_action " ${host} -${tmp_product} -build" ) ]]; then
2117
2121
continue
2118
2122
fi
2119
2123
@@ -3463,7 +3467,11 @@ for host in "${ALL_HOSTS[@]}"; do
3463
3467
3464
3468
for product in " ${PRODUCTS[@]} " ; do
3465
3469
# Check if we should perform this action.
3466
- if ! [[ $( should_execute_action " ${host} -${product} -install" ) ]]; then
3470
+ tmp_product=${product}
3471
+ if [[ ${tmp_product} == " libdispatch_static" ]]; then
3472
+ tmp_product=libdispatch
3473
+ fi
3474
+ if ! [[ $( should_execute_action " ${host} -${tmp_product} -install" ) ]]; then
3467
3475
continue
3468
3476
fi
3469
3477
You can’t perform that action at this time.
0 commit comments