Skip to content

Commit

Permalink
Switch default installed version to latest
Browse files Browse the repository at this point in the history
This will correspond to the most recent release tag (excludes pre-releases)
  • Loading branch information
manics committed Feb 10, 2023
1 parent c97bdd5 commit 7699209
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,14 @@ def main():
parser = ArgumentParser()
parser.add_argument("--show-progress-page", action="store_true")
parser.add_argument(
"--version", default="main", help="TLJH version or Git reference"
"--version",
default="latest",
help=(
"TLJH version or Git reference. "
"Default 'latest' is the most recent release. "
"Partial versions can be specified, for example '1', '1.0' or '1.0.0'. "
"You can also pass a branch name such as 'main' or a commit hash."
),
)
args, tljh_installer_flags = parser.parse_known_args()

Expand Down

0 comments on commit 7699209

Please sign in to comment.