Created
September 5, 2016 10:30
-
-
Save maxpeterson/6741852a2a9cb71b1d413f133dcc6f4a to your computer and use it in GitHub Desktop.
Publish all jam packages for a project
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
# Make sure your ~/.jamrc has the repo you are publishing to as the first entry. | |
# From the project folder conatianing jam packages | |
cd <jam-project>/project; | |
# publish each jam package | |
for dir in $(find jam -type d -depth 1); do (cd $dir; jam publish); done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment