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.
- package/bin/server +1 -1
- 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
|
|