fixes and cleanup
authorAJ ONeal <aj@therootcompany.com>
Sun, 3 May 2020 09:58:52 +0000 (09:58 +0000)
committerAJ ONeal <aj@therootcompany.com>
Sun, 3 May 2020 09:58:52 +0000 (09:58 +0000)
golang/golang.bash
macos/macos.bash
node/node.bash

index e5f09d1d6708f6af493ab4dae137fd17dcc78cbf..ad14c15d740cbd25997d6b91c69a5abd0f017a22 100644 (file)
@@ -117,7 +117,7 @@ popd 2>&1 >/dev/null
 ###################
 
 # TODO get better output from pathman / output the path to add as return to webi bootstrap
-pathman add "$new_go_home"
-pathman add "$HOME/go/bin/"
+pathman add "$new_go_home/bin"
+pathman add "$HOME/go/bin"
 echo "Installed 'go' (and go tools)"
 echo ""
index 97656290adce002911fd18f2520d9f0d33567153..6e7582f2ade3561e1f00d08a76a409f04234ec17 100644 (file)
@@ -17,11 +17,8 @@ set -u
 if [ -z "${WEBI_PKG_URL:-}" ]; then
   # dmg
   release_tab="${WEBI_HOST}/api/releases/macos@${WEBI_VERSION:-}.csv?os=$(uname -s)&arch=$(uname -m)&limit=1"
-  echo $release_tab
   WEBI_CSV=$(curl -fsSL "$release_tab" -H "User-Agent: $(uname -a)")
-  echo $WEBI_CSV
   WEBI_CHANNEL=$(echo $WEBI_CSV | cut -d ',' -f 3)
-  echo $WEBI_CHANNEL
   if [ "error" == "$WEBI_CHANNEL" ]; then
      echo "could not find release for macOS v${WEBI_VERSION}"
      exit 1
@@ -33,7 +30,15 @@ fi
 mkdir -p ~/Downloads
 pushd ~/Downloads 2>&1 >/dev/null
 
-wget -c "$WEBI_PKG_URL"
+# TODO use downloads directory because this is big
+set +e
+if [ -n "$(command -v wget)" ]; then
+  # better progress bar
+  wget -c "${WEBI_PKG_URL}"
+else
+  curl -fL "${WEBI_PKG_URL}" -o "$(echo "${WEBI_PKG_FILE}" | sed 's:.*/::' )"
+fi
+set -e
 
 if [ "Darwin" == "$(uname -s)" ]; then
   curl -fsSL 'https://gist.githubusercontent.com/solderjs/8c36d132250163011c83bad8284975ee/raw/5a291955813743c20c12ca2d35c7b1bb34f8aecc/create-bootable-installer-for-os-x-el-capitan.sh' -o create-bootable-installer-for-os-x-el-capitan.sh
index f4158d86aa0048757f17ad3c6ad5cea402de1ad9..89cb7c17d760f6be66036ae0556df0e582153980 100644 (file)
@@ -55,9 +55,9 @@ my_tmp=${WEBI_TMP:-$(mktemp -d node-install.XXXXXX)}
 sudo_cmd=${WEBI_SUDO:-}
 
 http_get() {
-  if [ -n "$(command -v curl 2>/dev/null | grep curl)" ]; then
+  if [ -n "$(command -v curl)" ]; then
     curl -fsSL $1 -o $2 || echo 'error downloading node'
-  elif [ -n "$(command -v wget 2>/dev/null | grep wget)" ]; then
+  elif [ -n "$(command -v wget)" ]; then
     wget --quiet $1 -O $2 || echo 'error downloading node'
   else
     echo "'wget' and 'curl' are missing. Please run the following command and try again"