summaryrefslogtreecommitdiff
path: root/package-scripts/asdf/postinst
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-06-16 15:44:11 -0600
committermo khan <mo.khan@gmail.com>2020-06-16 15:44:11 -0600
commit9a9149ebfae6fc6e1488bc281396b2c8cd544487 (patch)
tree2391b24f750e86cce822d44fae8a805d0353f761 /package-scripts/asdf/postinst
initial commit
Diffstat (limited to 'package-scripts/asdf/postinst')
-rwxr-xr-xpackage-scripts/asdf/postinst17
1 files changed, 17 insertions, 0 deletions
diff --git a/package-scripts/asdf/postinst b/package-scripts/asdf/postinst
new file mode 100755
index 0000000..39d84e8
--- /dev/null
+++ b/package-scripts/asdf/postinst
@@ -0,0 +1,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