Created
February 6, 2017 23:44
-
-
Save mccun934/0b9f8b2c1ad18c7a09edecfacf3a36fb to your computer and use it in GitHub Desktop.
switch all repos in org-id 1 to on_demand
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
| 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