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
|
HELP=0
|
||||||
for (( row=0; row<ROWS; row++ )); do
|
for (( row=0; row<ROWS; row++ )); do
|
||||||
set -x
|
set -x
|
||||||
install_${ARCH}_${PLAT}
|
install_${PLATFORMS[$((${COLS}*${row}))]}_${PLATFORMS[$((${COLS}*${row}+1))]}
|
||||||
set +x
|
set +x
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@ -186,7 +186,7 @@ if [[ "${ARCH}" == "all" && "${PLAT}" != "all" ]]; then
|
||||||
for (( row=0; row<ROWS; row++ )); do
|
for (( row=0; row<ROWS; row++ )); do
|
||||||
if [[ "${PLAT}" == "${PLATFORMS[$((${COLS}*${row}+1))]}" ]]; then
|
if [[ "${PLAT}" == "${PLATFORMS[$((${COLS}*${row}+1))]}" ]]; then
|
||||||
set -x
|
set -x
|
||||||
install_${ARCH}_${PLAT}
|
install_${PLATFORMS[$((${COLS}*${row}))]}_${PLAT}
|
||||||
set +x
|
set +x
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue