mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +08:00
fix(lint) Fix lint error on publish task
This commit is contained in:
parent
1951b57bbc
commit
162fa87c0e
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ module.exports = (grunt) => {
|
|||
if (!shouldPublishBuild()) {
|
||||
grunt.log.writeln(`>> Not publishing builds…`);
|
||||
grunt.log.writeln(`>> Would have uploaded the following assets: ${JSON.stringify(uploads, null, 2)}`);
|
||||
return;
|
||||
return Promise.resolve();
|
||||
}
|
||||
const awsKey = process.env.AWS_ACCESS_KEY_ID != null ? process.env.AWS_ACCESS_KEY_ID : "";
|
||||
const awsSecret = process.env.AWS_SECRET_ACCESS_KEY != null ? process.env.AWS_SECRET_ACCESS_KEY : "";
|
||||
|
|
Loading…
Reference in a new issue