refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / hexyl / install.sh
index a4b224d237e49dbd32a71db02f495ccde75f6847..74e24364a522ac8bf9c86ba1570ded9a478dc5a8 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-{
+function __init_hexyl() {
     set -e
     set -u
 
     WEBI_SINGLE=true
 
     pkg_get_current_version() {
-      # 'hexyl --version' has output in this format:
-      #       hexyl 0.8.0
-      # This trims it down to just the version number:
-      #       0.8.0
-      echo $(hexyl --version 2>/dev/null | head -n 1 | cut -d' ' -f 2)
+        # 'hexyl --version' has output in this format:
+        #       hexyl 0.8.0
+        # This trims it down to just the version number:
+        #       0.8.0
+        echo $(hexyl --version 2> /dev/null | head -n 1 | cut -d' ' -f 2)
     }
 
     pkg_install() {
@@ -29,3 +29,5 @@
         chmod a+x "$pkg_src_cmd"
     }
 }
+
+__init_hexyl