Skip to content
Snippets Groups Projects
Commit 04712b6e authored by Colton Leekley-Winslow's avatar Colton Leekley-Winslow
Browse files

revert to -z to fix error in setup-integration-tests-ubuntu

parent 6bac1127
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,7 @@ pip install -U -r "test/integration_tests/requirements.txt"
node_source_dir=`mktemp -d`
curl https://nodejs.org/dist/v6.4.0/node-v6.4.0-linux-x64.tar.gz | tar xvz -C "$node_source_dir"
# Avoid using -z
has_virtualenv=$( env | grep VIRTUAL_ENV= )
if [ "$has_virtualenv" == "" ]; then
if [ -z "$VIRTUAL_ENV" ]; then
sudo mv $node_source_dir/node-v6.4.0-linux-x64/bin/* /usr/local/bin
sudo mv $node_source_dir/node-v6.4.0-linux-x64/lib/* /usr/local/lib
sudo npm install -g git+https://github.com/flywheel-io/abao.git#better-jsonschema-ref
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment