# HG changeset patch # User Steve Losh # Date 1249740348 14400 # Node ID f72298ecd4409b44816a93c9557b14731c4779c7 # Parent c051bec803d402d7a234e00297fc46a5975634f7 Make the output of pull_everything prettier. diff -r c051bec803d4 -r f72298ecd440 .bashrc --- a/.bashrc Sat Aug 08 09:32:51 2009 -0400 +++ b/.bashrc Sat Aug 08 10:05:48 2009 -0400 @@ -32,8 +32,11 @@ pull_everything() { for repo in $( ls -1 ); do - [ -d $repo ] && [ -d $repo/.hg ] && hg -R $repo pull -u - echo + if [[ -d $repo && -d $repo/.hg ]]; then + echo "Pulling" $repo + hg -R $repo pull -u + echo + fi done }