first commit
This commit is contained in:
27
debian/postinst
vendored
Normal file
27
debian/postinst
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
echo "finishte.sh has been installed successfully!"
|
||||
echo ""
|
||||
echo "To complete setup, run:"
|
||||
echo " finishte 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
|
||||
Reference in New Issue
Block a user