Skip to content

Commit

Permalink
Fix appimage script
Browse files Browse the repository at this point in the history
  • Loading branch information
seanavery committed Nov 16, 2023
1 parent 9fa8a0c commit 3dcd55f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etc/Dockerfile.mod.pi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM ${BASE_IMG}
ENV DEBIAN_FRONTEND=noninteractive

# Install software-properties-common to get apt-add-repository
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get -y update && apt-get install -y --no-install-recommends \
software-properties-common

# Add the Raspberry Pi repository
Expand Down
2 changes: 1 addition & 1 deletion etc/viam-csi-jetson-arm64.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
version: 1
script:
- rm -rf $TARGET_APPDIR | true
- rm -rf $TARGET_APPDIR || true
- mkdir -p "$TARGET_APPDIR/usr/bin"
- cp ../build/viam-csi "$TARGET_APPDIR/usr/bin/viam-csi"
- mkdir -p "$TARGET_APPDIR/usr/share/icons/viam/256x256/apps/"
Expand Down
2 changes: 1 addition & 1 deletion etc/viam-csi-pi-arm64.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
version: 1
script:
- rm -rf $TARGET_APPDIR | true
- rm -rf $TARGET_APPDIR || true
- mkdir -p "$TARGET_APPDIR/usr/bin"
- cp ../build/viam-csi "$TARGET_APPDIR/usr/bin/viam-csi"
- mkdir -p "$TARGET_APPDIR/usr/share/icons/viam/256x256/apps/"
Expand Down

0 comments on commit 3dcd55f

Please sign in to comment.