summarylogtreecommitdiffstats
path: root/advanced-rest-client.install
blob: c1aa3b7b4511cd9716fb88f2acf2848e1f455be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
  # Link to the binary
  ln -sf '/opt/Advanced REST Client/advanced-rest-client' '/usr/local/bin/advanced-rest-client'
}

post_upgrade() {
  post_install
}

post_remove() {
  # Delete the link to the binary
  rm -f '/usr/local/bin/advanced-rest-client'
}