refactor(node): remove redundant echo
authorAJ ONeal <aj@therootcompany.com>
Mon, 15 Nov 2021 11:09:30 +0000 (11:09 +0000)
committerAJ ONeal <aj@therootcompany.com>
Mon, 15 Nov 2021 11:28:56 +0000 (11:28 +0000)
node/install.sh

index ecc20ddf859f14a56097a28ac7e3a934175a44a1..b0f822a38ab988abaea34d6a6e2c4a7f311b61e2 100644 (file)
@@ -17,7 +17,10 @@ pkg_get_current_version() {
     #       v12.8.0
     # This trims it down to just the version number:
     #       12.8.0
-    echo "$(node --version 2> /dev/null | head -n 1 | cut -d' ' -f1 | sed 's:^v::')"
+    node --version 2> /dev/null |
+        head -n 1 |
+        cut -d' ' -f1 |
+        sed 's:^v::'
 }
 
 pkg_install() {