summarylogtreecommitdiffstats
path: root/ani-cli.install
blob: 8891e16912a5740a9e2af32bd5065934bed60715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
msg_yellow() {
  printf "${YELLOW}==>${ALL_OFF}${BOLD} ${1}${ALL_OFF}\n"
}

ALL_OFF="$(tput sgr0)"
BOLD="$(tput bold)"
YELLOW="${BOLD}$(tput setaf 3)"

post_install() {
  echo
  msg_yellow "Disclaimer: This project is to be used at the user's own risk, based on their government and laws."
  echo
}

post_upgrade() {
  post_install
}