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

# Link to the binary
ln -sf '/opt/IPFS Desktop/ipfs-desktop' '/usr/bin/ipfs-desktop'

update-mime-database /usr/share/mime || true
update-desktop-database /usr/share/applications || true
}
post_remove() {
    :
#!/bin/bash

# Delete the link to the binary
rm -f '/usr/bin/ipfs-desktop'

}