mirror of
https://github.com/atom/atom.git
synced 2026-01-15 01:48:15 -05:00
12 lines
142 B
Bash
Executable File
12 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
rm -rf ~/.atom
|
|
git clean -dff
|
|
|
|
./script/bootstrap
|
|
./node_modules/.bin/grunt ci --stack --no-color
|