diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2006-08-30 16:54:40 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2006-08-30 16:54:40 +0000 |
commit | 204850258cc0a97ca02d421ffc8f130c601886e1 (patch) | |
tree | 5584461436e16636d2d87c2d3417b40ba7286a32 /menu | |
parent | 8097b86c21dbdef82e8001974cbe8cdfa06c6df3 (diff) | |
download | common-data-204850258cc0a97ca02d421ffc8f130c601886e1.tar common-data-204850258cc0a97ca02d421ffc8f130c601886e1.tar.gz common-data-204850258cc0a97ca02d421ffc8f130c601886e1.tar.bz2 common-data-204850258cc0a97ca02d421ffc8f130c601886e1.tar.xz common-data-204850258cc0a97ca02d421ffc8f130c601886e1.zip |
- update-menus doesn't do anything if DURING_INSTALL is set to 1
Diffstat (limited to 'menu')
-rwxr-xr-x | menu/update-menus | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/menu/update-menus b/menu/update-menus index c03fde5..7baeb12 100755 --- a/menu/update-menus +++ b/menu/update-menus @@ -12,6 +12,10 @@ exit 0 VERBOSE=0 +if [ "$DURING_INSTALL" = "1" ]; then + exit 0 +fi + if [ "$UID" == "0" ]; then USER_MENU=0 else |