chore(style): convert blocks into functions (see #325)
[webi-installers/.git] / awless / install.sh
index 089e2c4e62bac23722c75217afc558a139dfc163..db394c0bbd0f81b2e059840627de5242a168088b 100644 (file)
@@ -14,7 +14,7 @@ pkg_cmd_name="awless"
 # IMPORTANT: this let's other functions know to expect this to be a single file
 WEBI_SINGLE=true
 
-pkg_get_current_version() {
+function pkg_get_current_version() {
     # 'awless version' has output in this format:
     #       v2.1.0 h1:pQSaIJGFluFvu8KDGDODV8u4/QRED/OPyIR+MWYYse8=
     # This trims it down to just the version number:
@@ -22,7 +22,7 @@ pkg_get_current_version() {
     echo "$(awless version 2> /dev/null | head -n 1 | cut -d' ' -f1 | sed 's:^v::')"
 }
 
-pkg_install() {
+function pkg_install() {
     # $HOME/.local/opt/awless-v2.1.0/bin
     mkdir -p "$pkg_src_bin"
 
@@ -33,7 +33,7 @@ pkg_install() {
     chmod a+x "$pkg_src_cmd"
 }
 
-pkg_link() {
+function pkg_link() {
     # rm -f "$HOME/.local/bin/awless"
     rm -f "$pkg_dst_cmd"