Files
atom/script/cibuild
Kevin Sawicki f5bb0333b9 Run apm clean instead of deleting node_modules
This ensures removed modules are uninstalled before specs run but
unchanged modules can be cached between builds.
2013-09-03 14:13:04 -07:00

13 lines
172 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")/.."
rm -rf ~/.atom
git clean -dff
./script/bootstrap
./node_modules/.bin/apm clean
./node_modules/.bin/grunt ci --stack --no-color