From d2ad9ab2c4f3e97ccbcf77c10f82d913de88fcfe Mon Sep 17 00:00:00 2001 From: liuxueli Date: Fri, 29 May 2020 17:58:57 +0800 Subject: 修复预安装脚本核查entrylist.conf时路径错误的BUG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmake/preInstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/preInstall.sh b/cmake/preInstall.sh index 7188830..f7bb453 100644 --- a/cmake/preInstall.sh +++ b/cmake/preInstall.sh @@ -6,6 +6,6 @@ touch ${DST}/etc/entrylist.conf if [[ -z `grep -rn 'quic.inf' ${DST}/plug/conflist.inf` ]];then sed -i '/\[protocol\]/a\./plug/protocol/quic/quic.inf' ${DST}/plug/conflist.inf fi -if [[ -z `grep -rn 'quic' ${DST}etc/entrylist.conf` ]];then - echo "QUIC" >> ${DST}etc/entrylist.conf +if [[ -z `grep -rn 'QUIC' ${DST}/etc/entrylist.conf` ]];then + echo "QUIC" >> ${DST}/etc/entrylist.conf fi -- cgit v1.2.3