blob: 3d384a0f4d2a6d28e63e75e11699aaffd9edf6b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
# Tell user to remove the samples if they do not want them
echo "Tip: If you do not want the samples, you can remove them from /opt/sciter-js-sdk-bin/samples* by running:"
echo "# rm -rf /opt/sciter-js-sdk-bin/samples*"
echo
echo "Note: You may need to restart the session to reload environment variable changes, or running:"
echo "$ source /etc/profile.d/scitersdk.sh"
}
post_upgrade() {
post_install
}
|