screwdriver-api 6.0.2 → 6.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/server +1 -1
  2. package/package.json +1 -1
package/bin/server CHANGED
@@ -106,7 +106,7 @@ const CachePlugin = require('screwdriver-cache-bookend');
106
106
  const cache = new CachePlugin();
107
107
 
108
108
  // Plugin to upload coverage
109
- const coverageConfig = config.get('coverage');
109
+ const coverageConfig = hoek.clone(config.get('coverage'));
110
110
  const CoveragePlugin = require('screwdriver-coverage-bookend');
111
111
  const coverage = new CoveragePlugin(coverageConfig);
112
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "6.0.2",
3
+ "version": "6.0.4",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {