Skip to content

Commit

Permalink
Bug 943160 - pass '-j' option to repo via config.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Changbin Park committed Nov 26, 2013
1 parent 40d06fc commit c78cc45
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 c78cc45

Please sign in to comment.