chore(style): convert blocks into functions (see #325)
[webi-installers/.git] / fd / install.sh
index ad62461c34ff6c658b7a0c74e373a4e4bfd9c964..58c7568631559dc86d1a4988f3d1addac8f88f58 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-{
+function __init_fd() {
     set -e
     set -u
 
     WEBI_SINGLE=true
 
     pkg_get_current_version() {
-      # 'fd --version' has output in this format:
-      #       fd 8.1.1
-      # This trims it down to just the version number:
-      #       8.1.1
-      echo $(fd --version 2>/dev/null | head -n 1 | cut -d' ' -f 2)
+        # 'fd --version' has output in this format:
+        #       fd 8.1.1
+        # This trims it down to just the version number:
+        #       8.1.1
+        echo $(fd --version 2> /dev/null | head -n 1 | cut -d' ' -f 2)
     }
 
     pkg_install() {
@@ -25,7 +25,9 @@
         # mv ./fd-*/fd "$HOME/.local/opt/fd-v8.1.1/bin/fd"
         mv ./fd-*/fd "$pkg_src_cmd"
 
-        # chmod a+x "$HOME/.local/xbin/rg-v11.1.0"
+        # chmod a+x "$HOME/.local/opt/fd-v8.1.1/bin/fd"
         chmod a+x "$pkg_src_cmd"
     }
 }
+
+__init_fd