cleanup: shfmt, shellcheck, and whitespace
[webi-installers/.git] / jq / install.sh
index 1bb6cf0cbef53c8c0b2799ff7f7cde1de7485232..a15919db85370110cd548eb44b430abd582ae7f5 100644 (file)
@@ -1,3 +1,5 @@
+#!/bin/bash
+
 {
     set -e
     set -u
     WEBI_SINGLE=true
 
     pkg_get_current_version() {
-      # 'jq --version' has output in this format:
-      #       jq-1.6
-      # This trims it down to just the version number:
-      #       1.6
-      echo $(jq --version 2>/dev/null | head -n 1 | sed 's:^jq-::')
+        # 'jq --version' has output in this format:
+        #       jq-1.6
+        # This trims it down to just the version number:
+        #       1.6
+        echo $(jq --version 2> /dev/null | head -n 1 | sed 's:^jq-::')
     }
 }