fixed syntax error in allocate_runners.sh

This commit is contained in:
Thomas Harvey 2017-10-16 19:11:47 -04:00
parent 337423d294
commit 7bbf77c6ec

View File

@ -18,9 +18,9 @@ until [[ $memory -gt $maxMemoryUsage ]]; do
lxc-start-ephemeral -o $baseName -n $runnerName --union-type overlayfs -d; lxc-start-ephemeral -o $baseName -n $runnerName --union-type overlayfs -d;
if [[ "$?" -eq 0 ]]; then if [[ "$?" -eq 0 ]]; then
runners="${runners};${runnerName}"; runners="${runnerName};${runners}";
fi fi
usedMemoryPercent; usedMemoryPercent;
done done
echo $runners echo $runners;