blob: 5cd3aa4499bd1682b2da5f39e0ba7ba51e111635 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo -e "\n\e[1;33m==> Tip from cmdflow:\e[0m"
echo -e " By default, some shells (Fish, Bash) do not record consecutive duplicate commands."
echo -e " To ensure your charts are accurate, it is recommended to run this once:"
echo -e " \e[1;32mcmdflow --fix-history\e[0m"
echo -e " This will automatically configure your shell configs to save 100% of your history.\n"
}
post_upgrade() {
post_install
}
|