Add inherit to gam create org

This commit is contained in:
Ross Scroggs
2016-05-22 20:28:25 -07:00
parent 24611614d6
commit e42ca916fe

View File

@ -5662,6 +5662,9 @@ def doCreateOrg():
elif sys.argv[i].lower() == u'noinherit':
body[u'blockInheritance'] = True
i += 1
elif sys.argv[i].lower() == u'inherit':
body[u'blockInheritance'] = False
i += 1
else:
print u'ERROR: %s is not a valid argument for "gam create org"' % sys.argv[i]
sys.exit(2)