mirror of
https://github.com/atom/atom.git
synced 2026-01-22 13:28:01 -05:00
12 lines
238 B
Bash
Executable File
12 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -d /usr/local/share/nodenv ]; then
|
|
export NODENV_ROOT=/usr/local/share/nodenv
|
|
export PATH=/usr/local/share/nodenv/bin:/usr/local/share/nodenv/shims:$PATH
|
|
export NODENV_VERSION="v0.10.21"
|
|
fi
|
|
|
|
script/cibuild
|