]> git.phdru.name Git - git-scripts.git/commitdiff
Use xargs -I%
authorOleg Broytman <phd@phdru.name>
Fri, 16 Dec 2016 18:36:04 +0000 (21:36 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 16 Dec 2016 18:36:04 +0000 (21:36 +0300)
pull-usrlocalsrc

index 92156d9e1f22510ad3254ae0a2485450c92624b9..2fb2f2f302b04640949acde416184096d7db4f24 100755 (executable)
@@ -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