Skip to content

Instantly share code, notes, and snippets.

@maxpeterson
Created September 5, 2016 10:30
Show Gist options
  • Save maxpeterson/6741852a2a9cb71b1d413f133dcc6f4a to your computer and use it in GitHub Desktop.
Save maxpeterson/6741852a2a9cb71b1d413f133dcc6f4a to your computer and use it in GitHub Desktop.
Publish all jam packages for a project
# 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