瀏覽代碼

[PHP-FPM] Fix sed command

andryyy 6 年之前
父節點
當前提交
6d4bcfabb1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      data/Dockerfiles/phpfpm/docker-entrypoint.sh

+ 1 - 1
data/Dockerfiles/phpfpm/docker-entrypoint.sh

@@ -93,7 +93,7 @@ fi
 
 
 # Patching NC files, if any (fixes PHP 7.2.14 + NC 15.0.2)
 # Patching NC files, if any (fixes PHP 7.2.14 + NC 15.0.2)
 find /web/ -ipath '*lib/private/legacy/template.php' | while read -r template; do
 find /web/ -ipath '*lib/private/legacy/template.php' | while read -r template; do
-  sed -i "s/\$app \!== '' )/\$app \!== '' \&\& \$app \!== 'core' )/g" "${template}"; done
+  sed -i "s/\$app \!== '' )/\$app \!== '' \&\& \$app \!== 'core' )/g" "${template}"
 done
 done
 
 
 exec "$@"
 exec "$@"