We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d5edc commit c3f81edCopy full SHA for c3f81ed
Dockerfile.complex
@@ -9,12 +9,12 @@ RUN \
9
curl && \
10
echo "**** grab rclone ****" && \
11
mkdir -p /root-layer && \
12
- if [[ $(uname -m) == "x86_64" ]]; then \
+ if [ $(uname -m) = "x86_64" ]; then \
13
echo "Downloading x86_64 tarball" && \
14
curl -o \
15
/root-layer/rclone.deb -L \
16
"https://downloads.rclone.org/v1.47.0/rclone-v1.47.0-linux-amd64.deb"; \
17
- elif [[ $(uname -m) == "aarch64" ]]; then \
+ elif [ $(uname -m) = "aarch64" ]; then \
18
echo "Downloading aarch64 tarball" && \
19
20
0 commit comments