Skip to content

Commit

Permalink
fixed line length
Browse files Browse the repository at this point in the history
  • Loading branch information
emoscardini committed Nov 2, 2023
1 parent 1cfd9cc commit 2a6a8bf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1] - 2023-11-02

### Changed

- Fixed custom repo line to reduce line length
- Rebuild to comsume ziti_router_auto_enroll 1.0.15.

## [1.2.0] - 2023-10-31

### Changed
Expand Down
6 changes: 4 additions & 2 deletions router_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def create_parser():
:return: A Namespace containing arguments
"""
__version__ = '1.2.0'
__version__ = '1.2.1'
parser = argparse.ArgumentParser()

mgroup = parser.add_mutually_exclusive_group(required=True)
Expand Down Expand Up @@ -589,7 +589,9 @@ def handle_ziti_router_auto_enroll(args, router_info, enrollment_commands):

elif args.customRepoAddress:
logging.info("Downloading from custom repo")
enrollment_commands.append(f"https://{args.customRepoAddress}/openziti/ziti/releases/download/v{router_info['productMetadata']['zitiVersion']}/ziti-linux-amd64-{router_info['productMetadata']['zitiVersion']}.tar.gz")
enrollment_commands.append(f"https://{args.customRepoAddress}/openziti/ziti/"
"releases/download/v{router_info['productMetadata']['zitiVersion']}/"
"ziti-linux-amd64-{router_info['productMetadata']['zitiVersion']}.tar.gz")
else:
enrollment_commands.append(router_info['productMetadata']['zitiBinaryBundleLinuxAMD64'])

Expand Down

0 comments on commit 2a6a8bf

Please sign in to comment.