refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / gh / install.sh
1 #!/bin/bash
2
3 function __init_gh() {
4     set -e
5     set -u
6
7     ##############
8     # Install gh #
9     ##############
10
11     # Every package should define these 6 variables
12     pkg_cmd_name="gh"
13
14     pkg_dst_cmd="$HOME/.local/bin/gh"
15     pkg_dst="$pkg_dst_cmd"
16
17     pkg_src_cmd="$HOME/.local/opt/gh-v$WEBI_VERSION/bin/gh"
18     pkg_src_dir="$HOME/.local/opt/gh-v$WEBI_VERSION"
19     pkg_src="$pkg_src_cmd"
20
21     # pkg_install must be defined by every package
22     pkg_install() {
23         # ~/.local/opt/gh-v0.99.9/bin
24         mkdir -p "$(dirname $pkg_src_cmd)"
25
26         # mv ./gh-*/gh ~/.local/opt/gh-v0.99.9/bin/gh
27         mv ./"$pkg_cmd_name"*/bin/gh "$pkg_src_cmd"
28     }
29
30     # pkg_get_current_version is recommended, but (soon) not required
31     pkg_get_current_version() {
32         # 'gh --version' has output in this format:
33         #       gh 0.99.9 (rev abcdef0123)
34         # This trims it down to just the version number:
35         #       0.99.9
36         echo $(gh --version 2> /dev/null | head -n 1 | cut -d ' ' -f 2)
37     }
38
39 }
40
41 __init_gh