Merge pull request #10658 from atom/ks-default-build-dir-to-inside-repo

Default build directory to out/
This commit is contained in:
Kevin Sawicki
2016-02-02 13:17:47 -08:00
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -11,6 +11,7 @@ debug.log
/tags
/atom-shell/
/electron/
/out/
docs/output
docs/includes
spec/fixtures/evil-files/

View File

@@ -36,7 +36,7 @@ module.exports = (grunt) ->
# Options
installDir = grunt.option('install-dir')
buildDir = grunt.option('build-dir')
buildDir ?= path.join(os.tmpdir(), 'atom-build')
buildDir ?= 'out'
buildDir = path.resolve(buildDir)
channel = grunt.option('channel')

View File

@@ -21,6 +21,7 @@ var commands = [
[__dirname, '..', 'apm', 'node_modules'],
[__dirname, '..', 'atom-shell'],
[__dirname, '..', 'electron'],
[__dirname, '..', 'out'],
[home, '.atom', '.node-gyp'],
[home, '.atom', 'storage'],
[home, '.atom', '.apm'],