Skip to content

Commit 5134169

Browse files
committed
Fix minor bug in #92
1 parent 7a298db commit 5134169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pipenv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function pipfileToRequirements() {
2020
}
2121
if (res.status != 0)
2222
throw new Error(res.stderr);
23-
fse.ensureDir(path.join(this.servicePath, '.serverless'));
23+
fse.ensureDirSync(path.join(this.servicePath, '.serverless'));
2424
fse.writeFileSync(path.join(this.servicePath, '.serverless/requirements.txt'), res.stdout);
2525
};
2626

0 commit comments

Comments
 (0)