blob: 0d2e4e9f420925c12b8f29900dafc43795a6d688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install()
{
echo "remember to add /opt/clang-format-static to PATH
export PATH=\"/opt/clang-format-static:\$PATH\"
You can use archlinux-clang-format script to set default version of clang-format"
}
post_upgrade()
{
echo "remember to add /opt/clang-format-static to PATH
export PATH=\"/opt/clang-format-static:\$PATH\"
You can use archlinux-clang-format script to set default version of clang-format"
}
|