forked from pool/desktop-file-utils
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Copyright (c) 2005 SuSE
|
||
|
# Author: Stanislav Brabec <sbrabec@suse.cz>
|
||
|
|
||
|
# Ensure, that $XDG_DATA_DIRS is set. (#71978)
|
||
|
if test -z "$XDG_DATA_DIRS" ; then
|
||
|
. /etc/profile.d/xdg-enviroment.sh
|
||
|
fi
|
||
|
|
||
|
/opt/gnome/bin/update-desktop-database
|
||
|
|
||
|
#
|
||
|
# end
|
||
|
#
|