blob: 9d0f2a9705ef2e358c68ffc5d82e9f1fbdaaefcb (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Please update your PATH to include /usr/bin/aqua:"
echo " "
echo ' export PATH="$(aqua root-dir)/bin:$PATH"'
echo " "
echo "Note: If you use aqua combined with other version manager such as asdf,"
echo "please add ${AQUA_ROOT_DIR}/bin to the environment variable PATH after other version manager."
echo "For detail, please see https://aquaproj.github.io/docs/reference/use-aqua-with-other-tools."
}
|