소스 검색

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
 	chmod +x /usr/bin/frep
 
 
 RUN \
 RUN \
-	[[ "$JITSI_RELEASE" == "unstable" ]] && \
+	[ "$JITSI_RELEASE" = "unstable" ] && \
 	apt-dpkg-wrap apt-get update && \
 	apt-dpkg-wrap apt-get update && \
 	apt-dpkg-wrap apt-get install -y jq procps curl vim iputils-ping net-tools && \
 	apt-dpkg-wrap apt-get install -y jq procps curl vim iputils-ping net-tools && \
 	apt-cleanup || \
 	apt-cleanup || \