From 2f9192c23857faf78dc3f24479ea0930e6bb099c Mon Sep 17 00:00:00 2001 From: r900 Date: Wed, 31 Jul 2019 16:30:09 +0800 Subject: [PATCH] misc: change test for "unstable" to proper /bin/sh syntax With /bin/sh one `=` has to be used, otherwise it will always fail with "unexpected operator". --- base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 1d8396d..f1a0e9e 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -23,7 +23,7 @@ RUN \ chmod +x /usr/bin/frep RUN \ - [[ "$JITSI_RELEASE" == "unstable" ]] && \ + [ "$JITSI_RELEASE" = "unstable" ] && \ apt-dpkg-wrap apt-get update && \ apt-dpkg-wrap apt-get install -y jq procps curl vim iputils-ping net-tools && \ apt-cleanup || \