File: micro.postinst

package info (click to toggle)
micro 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,828 kB
  • sloc: sh: 247; makefile: 77; xml: 53
file content (11 lines) | stat: -rwxr-xr-x 262 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
    update-alternatives --install /usr/bin/editor editor /usr/bin/micro 40 \
      --slave /usr/share/man/man1/editor.1 editor.1 \
      /usr/share/man/man1/micro.1
fi

#DEBHELPER#