File: postinst

package info (click to toggle)
vim-airline 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 632 kB
  • sloc: sh: 41; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/bash
# postinst script for vim-airline

set -e

case "$1" in
    configure)
        vim-addon-manager -w install airline
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0