Merge pull request #20922 from taosdata/fix/oem-dir-not-found
chore: fix install.sh when not root
This commit is contained in:
commit
359a42f5cc
|
@ -579,7 +579,7 @@ function install_share_etc() {
|
|||
out=/etc/${clientName2}/$c.new.`date +%F`
|
||||
${csudo}cp -f ${script_dir}/share/etc/$c $out ||:
|
||||
else
|
||||
mkdir -p /etc/${clientName2} >/dev/null 2>/dev/null ||:
|
||||
${csudo}mkdir -p /etc/${clientName2} >/dev/null 2>/dev/null ||:
|
||||
${csudo}cp -f ${script_dir}/share/etc/$c /etc/${clientName2}/$c ||:
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue