We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5134169 commit 3f7ccccCopy full SHA for 3f7cccc
lib/pip.js
@@ -65,7 +65,7 @@ function installRequirements() {
65
}
66
throw new Error(res.error);
67
68
- if (res.status != 0)
+ if (res.status !== 0)
69
throw new Error(res.stderr);
70
};
71
lib/pipenv.js
@@ -18,7 +18,7 @@ function pipfileToRequirements() {
18
throw new Error(`pipenv not found! Install it with 'pip install pipenv'.`);
19
20
21
22
23
fse.ensureDirSync(path.join(this.servicePath, '.serverless'));
24
fse.writeFileSync(path.join(this.servicePath, '.serverless/requirements.txt'), res.stdout);
0 commit comments