소스 검색

Fix error with HTTPS (unset if false)

Joachim M. Giæver 3 년 전
부모
커밋
c1aabc717b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/helper/env-wrapper

+ 1 - 1
src/helper/env-wrapper

@@ -88,7 +88,7 @@ export GIT_DIR="${SNAP}/usr/lib/zwavejs2mqtt/.git"
 
 export HTTPS="${SERVER_SSL}"
 
-if [ "${HTTPS}" != "true" ]; then
+if [ "${HTTPS}" != true ]; then
     unset HTTPS
     unset SERVER_SSL
 fi