summarylogtreecommitdiffstats
path: root/.INSTALL
blob: d5744a147290fd0f33ea913cef29e8e82cbac324 (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/figma-linux/figma-linux' '/usr/local/bin/figma-linux'

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

# Delete the link to the binary
rm -f '/usr/local/bin/figma-linux'

}