summarylogtreecommitdiffstats
path: root/advanced-rest-client.install
blob: a5f3695362fd7bac3a819c6409c84466bd67a443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
  # Link to the binary
  ln -sf '/opt/AdvancedRestClient/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'
}