Skip to content

Commit

Permalink
ci: adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
BevryMe committed Mar 17, 2024
1 parent c726bd1 commit cb4d062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/is-kde
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function is_kde() (
# =====================================
# Action

if [[ "${DESKTOP_SESSION}" = 'LXDE'* ]] || [[ "${DESKTOP_SESSION}" = 'KDE'* ]]; then
if [[ ${DESKTOP_SESSION} == 'LXDE'* ]] || [[ ${DESKTOP_SESSION} == 'KDE'* ]]; then
return 0
else
return 1
Expand Down

0 comments on commit cb4d062

Please sign in to comment.