missing >/dev/null for a which statement

This commit is contained in:
Dana Jansens 2008-02-11 09:43:31 -05:00
parent be6fd760f1
commit 2e96d75364

View file

@ -34,6 +34,6 @@ fi
# Run XDG autostart things. By default don't run anything desktop-specific
# See xdg-autostart --help more info
DESKTOP_ENV=""
if which xdg-autostart; then
if which xdg-autostart >/dev/null; then
xdg-autostart $DESKTOP_ENV
fi