From d7cfb757d6474292e0ea8109302db315019ee548 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki & Nathan Sobo Date: Thu, 8 Aug 2013 09:45:17 -0700 Subject: [PATCH] Downgrade to atom-shell@v0.2.1 atom-shell@v0.3.0 removed the node binary which was needed for scripts spawned by BufferedProcess such as nak. We can explore other approaches to spawning node-based subprocesses if it's a deal-breaker to ship with a node binary. --- script/update-atom-shell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/update-atom-shell b/script/update-atom-shell index 256e18698..4209a978c 100755 --- a/script/update-atom-shell +++ b/script/update-atom-shell @@ -5,7 +5,7 @@ cd "$(dirname "${BASH_SOURCE[0]}" )/.." TARGET=${1:-atom-shell} DISTURL="https://gh-contractor-zcbenz.s3.amazonaws.com/atom-shell" CURRENT_VERSION=$(cat "${TARGET}/version" 2>&1) -LATEST_VERSION=$(curl -fsSkL $DISTURL/version) +LATEST_VERSION=ea1f81aa5260fe2d4a844f18e0251278fbadc093 # v0.2.1 if [ -z "${LATEST_VERSION}" ] ; then echo "Could determine lastest version of atom-shell" >&2