chore: move mac build to circle

This commit is contained in:
calebboyd
2017-09-27 01:40:00 -05:00
parent 4390568654
commit bfd07cd10a
6 changed files with 113 additions and 60 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ function normalizeOptionsAsync(input?: Partial<NexeOptions>): Promise<NexeOption
const options = Object.assign({}, defaults, input) as NexeOptions
const opts = options as any
options.temp = process.env.NEXE_TEMP || join(options.cwd, '.nexe')
options.temp = options.temp || process.env.NEXE_TEMP || join(options.cwd, '.nexe')
options.input = findInput(options.input, options.cwd)
options.name = extractName(options)
options.loglevel = extractLogLevel(options)