]> git.wh0rd.org - home.git/blobdiff - .bin/update-vapier-nodejs
crostini-vapier-setup: install edge
[home.git] / .bin / update-vapier-nodejs
index 4065953e62c948666b961b7af1df17cc27ba697b..158157fac9d3a5a5b36c932ef81d575839d4fe45 100755 (executable)
@@ -4,17 +4,20 @@
 
 set -e
 
-cd /usr/local/src/chrome-ext
+cd /usr/local/src/extensions
 if [[ ! -d nodejs ]]; then
        mkdir nodejs
 fi
 cd nodejs
 
 URL_GS_BASE='https://storage.googleapis.com/chromium-nodejs'
-URL_HASH_NODE='https://chromium.googlesource.com/chromium/src/+/master/third_party/node/linux/node-linux-x64.tar.gz.sha1?format=TEXT'
-URL_HASH_MOD='https://chromium.googlesource.com/chromium/src/+/master/third_party/node/node_modules.tar.gz.sha1?format=TEXT'
-# TODO: Find source of truth for this.
-VER="8.9.1"
+URL_CHROMIUM_BASE='https://chromium.googlesource.com/chromium/src/+/master'
+URL_DEPS="${URL_CHROMIUM_BASE}/DEPS?format=TEXT"
+URL_HASH_NODE="${URL_CHROMIUM_BASE}/third_party/node/linux/node-linux-x64.tar.gz.sha1?format=TEXT"
+URL_HASH_MOD="${URL_CHROMIUM_BASE}/third_party/node/node_modules.tar.gz.sha1?format=TEXT"
+
+hash=$(curl -s "${URL_DEPS}" | base64 -d)
+VER=$(echo "${hash}" | grep -o 'chromium-nodejs/[0-9.]*' | sort -u | cut -d/ -f2)
 
 hash=$(curl -s "${URL_HASH_NODE}" | base64 -d)
 dir='node-linux-x64'