blob: 2786d7f04dee9ec02c035be64adaf4fc083f49d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
echo
echo 'ADDITIONAL COMMENTS:'
echo ' - Script to run the Universal G-Code Sender is located at' \
'/usr/bin/universal-gcode-sender'
echo ' - A desktop entry file has not been provided'
echo ' - Configuration files are located in $HOME for now. ' \
'This is intentional, and not customizeable, as it is ' \
'part of the programming.'
echo
}
post_upgrade() {
echo
echo 'ADDITIONAL COMMENTS:'
echo ' - Script to run the Universal G-Code Sender is located at' \
'/usr/bin/universal-gcode-sender'
echo ' - A desktop entry file has not been provided'
echo ' - Configuration files are located in $HOME for now. ' \
'This is intentional, and not customizeable, as it is ' \
'part of the programming.'
echo
}
|