mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 04:41:35 +00:00
Fixed bug in gam create chromeprofilecommand
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
7.13.02
|
||||||
|
|
||||||
|
Fixed bug in `gam create chromeprofilecommand` where `select|filter` were not recognized.
|
||||||
|
|
||||||
7.13.01
|
7.13.01
|
||||||
|
|
||||||
Enhanced `gam create|print|show chromeprofilecommand` to allow specification
|
Enhanced `gam create|print|show chromeprofilecommand` to allow specification
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
||||||
__version__ = '7.13.01'
|
__version__ = '7.13.02'
|
||||||
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
||||||
|
|
||||||
#pylint: disable=wrong-import-position
|
#pylint: disable=wrong-import-position
|
||||||
@@ -25749,7 +25749,9 @@ def doCreateChromeProfileCommand():
|
|||||||
FJQC = FormatJSONQuoteChar()
|
FJQC = FormatJSONQuoteChar()
|
||||||
while Cmd.ArgumentsRemaining():
|
while Cmd.ArgumentsRemaining():
|
||||||
myarg = getArgument()
|
myarg = getArgument()
|
||||||
if myarg == 'clearcache':
|
if _getChromeProfileNameParameters(myarg, parameters):
|
||||||
|
pass
|
||||||
|
elif myarg == 'clearcache':
|
||||||
body['payload']['clearCache'] = getBoolean()
|
body['payload']['clearCache'] = getBoolean()
|
||||||
elif myarg == 'clearcookies':
|
elif myarg == 'clearcookies':
|
||||||
body['payload']['clearCookies'] = getBoolean()
|
body['payload']['clearCookies'] = getBoolean()
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = GAM for Google Workspace
|
name = GAM for Google Workspace
|
||||||
#version = attr: gam.var.GAM_VERSION
|
#version = attr: gam.var.GAM_VERSION
|
||||||
version = 7.13.01
|
version = 7.13.02
|
||||||
description = Command line management for Google Workspaces
|
description = Command line management for Google Workspaces
|
||||||
long_description = file: readme.md
|
long_description = file: readme.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
|
|||||||
Reference in New Issue
Block a user