Fix script syntax errors

Change-Id: I2a5d3d089be722d6d45cad2ec428b5041b9909c3
This commit is contained in:
Russell Bryant 2013-10-16 11:47:53 -04:00
parent 70b24a8421
commit 0fbcbc071c
1 changed files with 2 additions and 2 deletions

View File

@ -26,12 +26,12 @@ metadata() {
for project in ${projects} ; do
project_base=$(basename $(echo ${project} | cut -f1 -d'.'))
for time in 30 60 90 180 ; do
(metadata && ./reviewers.py -p ${project} -d ${time} ${EXTRA_ARGS}) -o results/${project_base}-reviewers-${time} --outputs txt --outputs csv
(metadata && ./reviewers.py -p ${project} -d ${time} ${EXTRA_ARGS} -o results/${project_base}-reviewers-${time} --outputs txt --outputs csv)
done
done
if [ "${all}" = "1" ] ; then
for time in 30 60 90 180 ; do
(metadata && ./reviewers.py -a -d ${time} ${EXTRA_ARGS}) -o results/all-reviewers-${time} --outputs txt --outputs csv
(metadata && ./reviewers.py -a -d ${time} ${EXTRA_ARGS} -o results/all-reviewers-${time} --outputs txt --outputs csv)
done
fi