Browse Source

Merge pull request #36 from demirhanaydin/master

#20 - [fix] EEXIST: file already exists .serverless
master
Nicola Peduzzi 8 years ago
committed by GitHub
parent
commit
84fcd7b469
  1. 2
      lib/cleanup.js

2
lib/cleanup.js

@ -11,7 +11,7 @@ module.exports = {
const moveArtifact = new BbPromise((resolve, reject) => {
if (this.originalServicePath) {
this.serverless.config.servicePath = this.originalServicePath;
fse.move(
fse.copy(
path.join(webpackOutputPath, '.serverless'),
path.join(this.serverless.config.servicePath, '.serverless'),
(err) => {

Loading…
Cancel
Save