X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=pull-usrlocalsrc;h=2fb2f2f302b04640949acde416184096d7db4f24;hb=f7e88cf0e98ed852def4625211fd6f21799d7129;hp=92156d9e1f22510ad3254ae0a2485450c92624b9;hpb=ce9945396a4294227258f07f528fcf53984c7175;p=git-scripts.git diff --git a/pull-usrlocalsrc b/pull-usrlocalsrc index 92156d9..2fb2f2f 100755 --- a/pull-usrlocalsrc +++ b/pull-usrlocalsrc @@ -14,6 +14,6 @@ while read d; do if has_remote upstream && has_remote origin; then git pull upstream master && git push origin master || exit 1 else - git remote | xargs -I'{}' git pull '{}' master || exit 1 + git remote | xargs -I% git pull % master || exit 1 fi done