We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b652947 + 5dd666c commit f57475dCopy full SHA for f57475d
lib/poetry.js
@@ -50,7 +50,7 @@ function pyprojectTomlToRequirements() {
50
51
if (requirementsContents.match(editableFlag)) {
52
this.serverless.cli.log(
53
- 'The generated file contains -e lines, removing them...'
+ 'The generated file contains -e flags, removing them...'
54
);
55
fse.writeFileSync(
56
sourceRequirements,
@@ -61,7 +61,8 @@ function pyprojectTomlToRequirements() {
61
fse.ensureDirSync(path.join(this.servicePath, '.serverless'));
62
fse.moveSync(
63
64
- path.join(this.servicePath, '.serverless', 'requirements.txt')
+ path.join(this.servicePath, '.serverless', 'requirements.txt'),
65
+ { "overwrite": true }
66
67
}
68
0 commit comments