Add --will-cite

This commit is contained in:
Isaac Levy 2017-05-19 14:09:49 -04:00
parent 51d681c165
commit b05235ee9f

View file

@ -33,8 +33,8 @@ build() {
if command -v parallel; then # parallel execution!
export -f build_ts build
parallel -j+2 --bar build_ts ::: $ts_apps
parallel -j+2 --bar build ::: $apps
parallel -j+2 --will-cite --bar build_ts ::: $ts_apps
parallel -j+2 --will-cite --bar build ::: $apps
else # sequential execution
for app in $ts_apps; do build_ts $app; done
for app in $apps; do build $app; done