summaryrefslogtreecommitdiff
path: root/package-scripts/asdf/postinst
blob: 39d84e8e677661d263d8e506cbc5d62bfff3dfd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# Perform necessary asdf setup steps
# after package is installed.
#

PROGNAME=`basename $0`

error_exit()
{
  echo "${PROGNAME}: ${1:-"Unknown Error"}" 1>&2
  exit 1
}

echo "Thank you for installing asdf!"

exit 0