Преглед на файлове

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".
r900 преди 5 години
родител
ревизия
2f9192c238
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      base/Dockerfile

+ 1 - 1
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 || \