Skip to content

Commit

Permalink
Fix docker lint SC2086
Browse files Browse the repository at this point in the history
Adds some double quotes.

Signed-off-by: Shawn T. Amundson <[email protected]>
  • Loading branch information
vaporos committed Jan 29, 2024
1 parent fc08a45 commit 0a2ea75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ci/splinter-dev.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ RUN curl https://sh.rustup.rs -sSf > /usr/bin/rustup-init \
&& cargo install cargo-deb \
# Install protoc
&& TARGET_ARCH=$(dpkg --print-architecture) \
&& if [[ $TARGET_ARCH == "arm64" ]]; then \
&& if [[ "$TARGET_ARCH" == "arm64" ]]; then \
PROTOC_ARCH="aarch_64"; \
elif [[ $TARGET_ARCH == "amd64" ]]; then \
elif [[ "$TARGET_ARCH" == "amd64" ]]; then \
PROTOC_ARCH="x86_64"; \
fi \
&& curl -OLsS https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-$PROTOC_ARCH.zip \
&& unzip -o protoc-3.7.1-linux-$PROTOC_ARCH.zip -d /usr/local \
&& rm protoc-3.7.1-linux-$PROTOC_ARCH.zip \
&& curl -OLsS "https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-$PROTOC_ARCH.zip" \
&& unzip -o "protoc-3.7.1-linux-$PROTOC_ARCH.zip" -d /usr/local \
&& rm "protoc-3.7.1-linux-$PROTOC_ARCH.zip" \
# Install just
&& curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin

Expand Down

0 comments on commit 0a2ea75

Please sign in to comment.