-
-
Save dca/037a4bdffca61751a15e to your computer and use it in GitHub Desktop.
Revisions
-
robolson revised this gist
Mar 7, 2009 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,13 @@ #!/bin/bash repos=( "/Users/rob/Library/Application Support/TextMate/Bundles/Git.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/RubyAMP.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby Haml.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby on Rails.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/ruby-sass.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/ruby-shoulda.tmbundle" ) echo "Checking" ${#repos[@]} "repositories for updates" -
robolson revised this gist
Mar 7, 2009 . 1 changed file with 15 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,15 @@ #!/bin/bash repos=( "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/RubyAMP.tmbundle" ) echo "Checking" ${#repos[@]} "repositories for updates" for repo in "${repos[@]}" do echo "updating" ${repo} cd "${repo}" git pull done -
robolson created this gist
Mar 7, 2009 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/bin/bash repos=( "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby.tmbundle" "/Users/rob/Library/Application Support/TextMate/Bundles/RubyAMP.tmbundle" ) echo "Checking" ${#repos[@]} "repositories for updates" for repo in "${repos[@]}" do echo "updating" ${repo} cd "${repo}" git pull done