Skip to content

Commit

Permalink
Add a cli argument for overriding the locker branch
Browse files Browse the repository at this point in the history
  • Loading branch information
rahearn committed Sep 11, 2024
1 parent d9f3998 commit 6809036
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plant/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

from compliance.evidence import ExternalEvidence, YEAR
from compliance.utils.credentials import Config
from compliance.config import get_config

from ilcli import Command

Expand All @@ -37,6 +38,11 @@ def _init_arguments(self):
"as an example https://github.com/my-org/my-repo"
),
)
self.add_argument(
'--branch',
help="Branch name for locker repository",
default=False
)
self.add_argument(
"--creds",
metavar="~/path/creds",
Expand Down Expand Up @@ -106,6 +112,10 @@ def _run(self, args):
gitconfig = None
if args.git_config or args.git_config_file:
gitconfig = args.git_config or json.loads(open(args.git_config_file).read())
if args.branch:
c = get_config()
c.load()
c.raw_config["locker"]["default_branch"] = args.branch
# self.name drives the Locker push mode.
# - dry-run translates to locker no-push mode
# - push-remote translates to locker full-remote mode
Expand Down

0 comments on commit 6809036

Please sign in to comment.