File: postinst

package info (click to toggle)
tmux 2.3-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,032 kB
  • ctags: 5,763
  • sloc: ansic: 36,368; sh: 4,108; awk: 339; makefile: 247
file content (11 lines) | stat: -rwxr-xr-x 167 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
    if [ -z "$2" ] || dpkg --compare-versions "$2" lt "1.5-3"; then
	add-shell /usr/bin/tmux
    fi
fi

#DEBHELPER#