Explorar o código

Fix error with HTTPS (unset if false)

Joachim M. Giæver %!s(int64=3) %!d(string=hai) anos
pai
achega
c1aabc717b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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