diff options
author | Ted Gould <ted@gould.cx> | 2014-04-07 08:27:30 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2014-04-07 08:27:30 -0500 |
commit | 6f1a0f7c99ac679b9f3626c9c27331c649687c19 (patch) | |
tree | 71b30d8a3ce82a73c8ef4589752b0843540d4425 /data | |
parent | d0042b5e3254c18d9ca46c790db6cfab38579ed3 (diff) | |
download | ayatana-indicator-application-6f1a0f7c99ac679b9f3626c9c27331c649687c19.tar.gz ayatana-indicator-application-6f1a0f7c99ac679b9f3626c9c27331c649687c19.tar.bz2 ayatana-indicator-application-6f1a0f7c99ac679b9f3626c9c27331c649687c19.zip |
Switching to single equals
Diffstat (limited to 'data')
-rw-r--r-- | data/indicator-application.conf.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/indicator-application.conf.in b/data/indicator-application.conf.in index 74ef5eb..07a7d05 100644 --- a/data/indicator-application.conf.in +++ b/data/indicator-application.conf.in @@ -12,7 +12,7 @@ pre-start script # NOTE: Limiting only to Unity 7 right now as it's still using # dbusmenu. That can be lifted after it is ported to GMenu - if [ "x$DESKTOP_SESSION" == "xubuntu-touch" ] ; then + if [ "x$DESKTOP_SESSION" = "xubuntu-touch" ] ; then stop; exit 0 fi end script |