summarylogtreecommitdiffstats
path: root/electronmail-bin.install
blob: f4be1ffbc79689386d500b04a59101088202c724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    :
#!/bin/bash

# Link to the binary
ln -sf '/opt/ElectronMail/electron-mail' '/usr/local/bin/electron-mail'

}
post_remove() {
    :
#!/bin/bash

# Delete the link to the binary
rm -f '/usr/local/bin/electron-mail'

}