Last active
August 29, 2015 13:57
-
-
Save srenatus/9888226 to your computer and use it in GitHub Desktop.
how about that?
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 characters
| iter my_array do |it| | |
| execute "git fetch -p" do | |
| cwd path_for(it) | |
| end | |
| end | |
| # ---> with my_array = %(foo bar), this should lead to | |
| execute "foo: git fetch -p" do | |
| command "git fetch -p" | |
| cwd path_for(foo) | |
| end | |
| execute "bar: git fetch -p" do | |
| command "git fetch -p" | |
| cwd path_for(bar) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment