~massimeddu/ditzionariusardu/trunk

« back to all changes in this revision

Viewing changes to src/deb-package/openoffice.org-thesaurus-sc/scripts/postinst

  • Committer: Massimeddu
  • Date: 2009-12-18 13:19:27 UTC
  • Revision ID: massimeddu@notebook-20091218131927-d5y0g6ojl51z1ro9
Some scripts improvments

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "configure" ]; then
 
6
  if [ -x /usr/sbin/update-openoffice-dicts ]; then
 
7
        update-openoffice-dicts
 
8
  fi
 
9
fi
 
10
 
 
11
 
 
12
 
 
13
exit 0