Skip to content

Instantly share code, notes, and snippets.

@mccun934
Created February 6, 2017 23:44
Show Gist options
  • Select an option

  • Save mccun934/0b9f8b2c1ad18c7a09edecfacf3a36fb to your computer and use it in GitHub Desktop.

Select an option

Save mccun934/0b9f8b2c1ad18c7a09edecfacf3a36fb to your computer and use it in GitHub Desktop.
switch all repos in org-id 1 to on_demand
for i in $(hammer repository list --organization-id 1 | grep -e "^[[:digit:]]" | awk '{print $1}' | sort -n); do hammer repository update --id $i --download-policy 'on_demand' --organization-id 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment