chore(style): add shebang, set bash strict mode, create function
[webi-installers/.git] / fd / install.sh
index ad62461c34ff6c658b7a0c74e373a4e4bfd9c964..85ef0b26e405eb7687658d35cd00ce897a51bd43 100644 (file)
@@ -1,8 +1,8 @@
 #!/bin/bash
+set -e
+set -u
 
-{
-    set -e
-    set -u
+function __init_fd() {
 
     ###############
     # Install fd #
     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