blob: 0086d88265b639ef54e028ceebf7896954cdc318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh -e
# see #779503, base version (50) + go version (1.4)
prio=54
case "$1" in
configure)
update-alternatives \
--install /usr/bin/go go /usr/bin/go-@BV@ $prio \
--slave /usr/bin/gofmt gofmt /usr/bin/gofmt-@BV@
;;
esac
#DEBHELPER#
exit 0
|