TODO Comment
# TODO(majopela): set default to "" once fls is included in our images
Location
python/packages/jumpstarter-driver-flashers/jumpstarter_driver_flashers/client.py, line 1513
Context
@click.option(
"--fls-version",
type=str,
default="0.2.0", # TODO(majopela): set default to "" once fls is included in our images
help="Download an specific fls version from the github releases",
)
@click.option(
"--fls-binary-url",
type=str,
help="Custom URL to download FLS binary from (overrides --fls-version)",
)
The --fls-version default is hardcoded to "0.2.0" because fls is not yet included in the base images. Once fls is bundled in the images, the default should be changed to "" (empty string).
TODO Comment
# TODO(majopela): set default to "" once fls is included in our imagesLocation
python/packages/jumpstarter-driver-flashers/jumpstarter_driver_flashers/client.py, line 1513Context
The
--fls-versiondefault is hardcoded to"0.2.0"because fls is not yet included in the base images. Once fls is bundled in the images, the default should be changed to""(empty string).