blob: a83128e66ee0b730e0b3ba2e0436bed74d975621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
cat <<EOF
==> To auto-discover system extensions, add to ~/.pi/agent/settings.json:
{
"extensions": ["/usr/share/pi/extensions"]
}
EOF
}
post_upgrade() {
post_install
}
|