mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
Disable colors when BUILT_PRODUCTS_DIR env var is set
This commit is contained in:
parent
4f758f1fe2
commit
f48514114d
@ -22,7 +22,7 @@ function executeCommands(commands, done, index) {
|
||||
done(null);
|
||||
}
|
||||
|
||||
var apmFlags = process.env.JANKY_SHA1 ? '--no-color' : '';
|
||||
var apmFlags = process.env.JANKY_SHA1 || process.env.BUILT_PRODUCTS_DIR ? '--no-color' : '';
|
||||
var echoNewLine = process.platform == 'win32' ? 'echo.' : 'echo';
|
||||
var commands = [
|
||||
'git submodule --quiet sync',
|
||||
|
Loading…
Reference in New Issue
Block a user