File: preinst

package info (click to toggle)
gnucash-docs 5.10-0.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 164,316 kB
  • sloc: xml: 101,090; ruby: 229; makefile: 58; sh: 8
file content (15 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

# Handle symlink to directory conversion (happened in 2.6.0-1)

HELPDIR=/usr/share/gnome/help/

if [ -L $HELPDIR/gnucash-guide ]; then
    rm $HELPDIR/gnucash-guide
fi
if [ -L $HELPDIR/gnucash-help ]; then
    rm $HELPDIR/gnucash-help
fi

#DEBHELPER#