Fixed dumb bug when dealing with ALL.
This commit is contained in:
parent
e4e9ebd5b0
commit
bf33607aa1
1 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ if [[ "${ARCH}" == "all" && "${PLAT}" == "all" ]]; then
|
|||
HELP=0
|
||||
for (( row=0; row<ROWS; row++ )); do
|
||||
set -x
|
||||
install_${ARCH}_${PLAT}
|
||||
install_${PLATFORMS[$((${COLS}*${row}))]}_${PLATFORMS[$((${COLS}*${row}+1))]}
|
||||
set +x
|
||||
done
|
||||
fi
|
||||
|
@ -186,7 +186,7 @@ if [[ "${ARCH}" == "all" && "${PLAT}" != "all" ]]; then
|
|||
for (( row=0; row<ROWS; row++ )); do
|
||||
if [[ "${PLAT}" == "${PLATFORMS[$((${COLS}*${row}+1))]}" ]]; then
|
||||
set -x
|
||||
install_${ARCH}_${PLAT}
|
||||
install_${PLATFORMS[$((${COLS}*${row}))]}_${PLAT}
|
||||
set +x
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue