mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-10 02:03:07 +08:00
Merge pull request #866 from mbilker/remove-module-list
Remove log of integration test package installation by default
This commit is contained in:
commit
d21fcf7069
1 changed files with 5 additions and 3 deletions
|
@ -95,16 +95,21 @@ function bootstrap() {
|
|||
env: apmEnv
|
||||
};
|
||||
|
||||
var integrationCommand = npmPath + npmFlags + 'install';
|
||||
var integrationOptions = {cwd: path.resolve(__dirname, '..', 'spec_integration')};
|
||||
|
||||
if (process.argv.indexOf('--no-quiet') === -1) {
|
||||
buildInstallCommand += ' --loglevel error';
|
||||
npmInstallApmCommand += ' --loglevel error';
|
||||
apmInstallCommand += ' --loglevel error';
|
||||
integrationCommand += ' --loglevel error';
|
||||
apmDedupeCommand += ' --quiet';
|
||||
|
||||
npmDedupeNpmOptions.ignoreStderr = true;
|
||||
npmDedupeNpmOptions.ignoreStdout = true;
|
||||
buildInstallOptions.ignoreStdout = true;
|
||||
npmInstallApmOptions.ignoreStdout = true;
|
||||
integrationOptions.ignoreStdout = true;
|
||||
}
|
||||
|
||||
// apm ships with 32-bit node so make sure its native modules are compiled
|
||||
|
@ -145,9 +150,6 @@ function bootstrap() {
|
|||
var downloadElectronCmd = gruntPath + " download-electron --gruntfile build/Gruntfile.coffee"
|
||||
m7 += " $ "+downloadElectronCmd
|
||||
|
||||
var integrationCommand = npmPath + npmFlags + 'install';
|
||||
var integrationOptions = {cwd: path.resolve(__dirname, '..', 'spec_integration')};
|
||||
|
||||
m8 = "\n\n---> Installing integration test modules\n\n"
|
||||
m8 += " $ "+integrationCommand+" "+printArgs(integrationOptions)+"\n"
|
||||
|
||||
|
|
Loading…
Reference in a new issue