28 lines
533 B
Bash
28 lines
533 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
echo "finish.sh has been installed successfully!"
|
|
echo ""
|
|
echo "To complete setup, run:"
|
|
echo " finish install"
|
|
echo ""
|
|
echo "Then reload your shell:"
|
|
echo " source ~/.bashrc # for bash"
|
|
echo " source ~/.zshrc # for zsh"
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|