Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN dnf install -y python3 ustreamer libusb1 android-tools python3-libgpiod curl
dnf clean all && \
rm -rf /var/cache/dnf

ARG FLS_VERSION=0.2.0
ARG FLS_VERSION=0.3.0
RUN ARCH=$(uname -m) && \
SUFFIX="linux" && \
if [ "$ARCH" = "aarch64" ]; then SUFFIX="linux-musl"; fi && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ def base():
@click.option(
"--fls-version",
type=str,
default="0.2.0", # TODO(majopela): set default to "" once fls is included in our images
default="",
help="Download an specific fls version from the github releases",
)
@click.option(
Expand Down
Loading