mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "HERE?"
|
|
|
|
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
|