Commit 91f805c9 by Dane Springmeyer

fix typo

parent c2e4e5b6
......@@ -26,7 +26,7 @@ if [[ $(uname -s) == 'Darwin' ]]; then
export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-osx-ia32
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.zip
unzip -q ${NW_DOWNLOAD}.zip
export PATH=$(pwd)/node-webkit.app/Contents/MacOS/
export PATH=$(pwd)/node-webkit.app/Contents/MacOS/:${PATH}
else
export NW_DOWNLOAD=node-webkit-v${NODE_WEBKIT}-linux-x64
# for testing node-webkit, launch a virtual display
......@@ -34,7 +34,7 @@ else
sh -e /etc/init.d/xvfb start +extension RANDR
wget http://dl.node-webkit.org/v${NODE_WEBKIT}/${NW_DOWNLOAD}.tar.gz
tar xf ${NW_DOWNLOAD}.tar.gz
export PATH=$(pwd)/${NW_DOWNLOAD}:$PATH
export PATH=$(pwd)/${NW_DOWNLOAD}:${PATH}
fi
npm install --build-from-source ${GYP_ARGS}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment