Skip to content

Commit

Permalink
chore: fix env script error
Browse files Browse the repository at this point in the history
fix env script error

Log:
  • Loading branch information
dengbo11 committed Jan 8, 2024
1 parent 3608708 commit 2c5ddee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/Xsession.d/00deepin-dde-env
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "$1" = "/usr/bin/dde-session" ]; then
fi
# control qt program infos level, set it only on uos
if [ -f "/etc/os-version" ];then
if [ ! `grep Community /etc/os-version` ];then
if ! grep -q Community /etc/os-version;then
export QT_LOGGING_RULES="*.debug=false"
fi
fi
Expand Down

0 comments on commit 2c5ddee

Please sign in to comment.