Skip to content

Commit

Permalink
Reverting changes to plugin iteration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcranmer committed Aug 3, 2011
1 parent ee94d0d commit 8d7f1c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ print ' '.join([x[:x.find('/indexer.py')] for x in files])
HEREDOC
) )
echo -n "Found:"
for plugin in $(seq 1 $((${#tools[@]}))); do
for plugin in $(seq 0 $((${#tools[@]} - 1))); do
echo -n " $(basename ${tools[plugin]})"
done
echo ""

for plugin in $(seq 1 $((${#tools[@]}))); do
for plugin in $(seq 0 $((${#tools[@]} - 1))); do
echo -n "Prebuilding $(basename ${tools[plugin]})... "
if [ -e ${tools[plugin]}/Makefile ]; then
$MAKE -s -C ${tools[plugin]} prebuild
Expand Down

0 comments on commit 8d7f1c2

Please sign in to comment.