]> git.donarmstrong.com Git - bin.git/commitdiff
use git instead of mr
authorDon Armstrong <don@donarmstrong.com>
Tue, 2 Jul 2013 04:51:56 +0000 (21:51 -0700)
committerDon Armstrong <don@donarmstrong.com>
Tue, 2 Jul 2013 04:51:56 +0000 (21:51 -0700)
update_org_files

index b11a6618df265009991b0d59b789a539185c73ae..d7cec3e3712c3ccef6bb1a37df44f27ef2f1e7f9 100755 (executable)
@@ -4,7 +4,7 @@ cd ~;
 
 for a in $(mr list |grep 'list:'|grep -v 'finished'|awk -F'list: ' '{print $2}' 2>/dev/null); do 
     (cd "$a";
-    if mr --no-recurse status |grep '^ M'|grep -q '.org$'; then
+    if git status --porcelain|grep '^ M'|grep -q '.org$'; then
           git commit -m'update org files' $(mr --no-recurse status |grep '^ M'|grep '.org$'|sed 's/^ M//g');
           git push;
        fi;