We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a298db commit 5134169Copy full SHA for 5134169
lib/pipenv.js
@@ -20,7 +20,7 @@ function pipfileToRequirements() {
20
}
21
if (res.status != 0)
22
throw new Error(res.stderr);
23
- fse.ensureDir(path.join(this.servicePath, '.serverless'));
+ fse.ensureDirSync(path.join(this.servicePath, '.serverless'));
24
fse.writeFileSync(path.join(this.servicePath, '.serverless/requirements.txt'), res.stdout);
25
};
26
0 commit comments