Skip to content

Commit

Permalink
Merge pull request andreasgal#301 from pchangbin/master
Browse files Browse the repository at this point in the history
Bug 943160 - pass '-j' option to repo via config.sh, r=jld
  • Loading branch information
michaelwu committed Dec 2, 2013
2 parents 40d06fc + 47745ee commit dcbd805
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ BRANCH=${BRANCH:-master}

while [ $# -ge 1 ]; do
case $1 in
-d|-l|-f|-n|-c|-q)
-d|-l|-f|-n|-c|-q|-j*)
sync_flags="$sync_flags $1"
if [ $1 = "-j" ]; then
shift
sync_flags+=" $1"
fi
shift
;;
--help|-h)
Expand Down

0 comments on commit dcbd805

Please sign in to comment.