소스 검색

Add quotes

Christian Meis 4 년 전
부모
커밋
8f7b61291f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/prerm.sh

+ 1 - 1
scripts/prerm.sh

@@ -3,7 +3,7 @@ set -e
 
 # Stop systemd service
 if [ -d /run/systemd/system ]; then
-  if [ "$1" = remove ] || [ "$1" = "0" ]; then
+  if [ "$1" = "remove" ] || [ "$1" = "0" ]; then
     echo "Stopping ntfy.service ..."
     if [ -x /usr/bin/deb-systemd-invoke ]; then
       deb-systemd-invoke stop 'ntfy.service' >/dev/null || true