cleanup: shfmt, shellcheck, and whitespace
[webi-installers/.git] / hugo / install.sh
1 set -e
2 set -u
3
4 pkg_cmd_name="hugo"
5 WEBI_SINGLE=true
6
7 pkg_get_current_version() {
8     # 'hugo version' has output in this format:
9     #       Hugo Static Site Generator v0.72.0-8A7EF3CF darwin/amd64 BuildDate: 2020-05-31T12:07:44Z
10     # This trims it down to just the version number:
11     #       0.72.0
12     echo "$(hugo version 2> /dev/null | head -n 1 | cut -d' ' -f5 | cut -d '-' -f1 | sed 's:^v::')"
13 }