Skip to content

Commit

Permalink
CI: Fix gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelklehr committed May 19, 2020
1 parent 15ee4ed commit a96d97b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gulpfile.js
Expand Up @@ -11,7 +11,7 @@ const VERSION = require('./package.json').version
const paths = {
zip: [
'./**',
// '!dist/js/test.js', // only for releases
(process.env['CI'] ? '' : '!') + 'dist/js/test.js',
'!builds/**',
'!src/**',
'!node_modules/**',
Expand All @@ -36,7 +36,9 @@ try {
extensionId: WEBSTORE_ID,
})
)
} catch (e) {}
} catch (e) {
// noop
}

const js = function() {
return new Promise((resolve) =>
Expand Down

0 comments on commit a96d97b

Please sign in to comment.