diff options
| author | liuxueli <[email protected]> | 2019-12-25 11:51:46 +0800 |
|---|---|---|
| committer | liuxueli <[email protected]> | 2019-12-25 11:51:46 +0800 |
| commit | 1fabdf39f678c3185a02149fcf474c99d941a259 (patch) | |
| tree | 522032e570dc776a7c474eea4bf97e418d331306 | |
| parent | 261d36fc871333cdaffb715d336f7500973f2f87 (diff) | |
修改预安装脚本,修复安装inf失败的问题
| -rw-r--r-- | preinstall/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preinstall/install.sh b/preinstall/install.sh index d1deb82..397e134 100644 --- a/preinstall/install.sh +++ b/preinstall/install.sh @@ -6,7 +6,7 @@ touch ${DST}/plug/conflist.inf mkdir -p ${DST}/conf/ touch ${DST}/${CONFILE} -if [[ -z `grep -rn '[business]' ${DST}/plug/conflist.inf` ]];then +if [[ -z `grep -rn '\[business\]' ${DST}/plug/conflist.inf` ]];then echo '[business]' >> ${DST}/plug/conflist.inf fi |
