blob: 4ec99ab52dc1f42a3087d6f5307bfb06c7310221 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo ":: Make sure to also add the llvm tools component"
echo " using 'rustup component add llvm-tools-preview'"
}
post_remove() {
echo ":: If you no longer require the llvm tools from rustup, you can"
echo " remove it with 'rustup component remove llvm-tools-preview'"
}
|