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.
2 parents 7757118 + 50f4639 commit e8bc6cfCopy full SHA for e8bc6cf
index.js
@@ -20,7 +20,7 @@ class ServerlessPythonRequirements {
20
*/
21
addVendorHelper() {
22
if (this.custom().zip) {
23
- this.serverless.cli.log('Removing Python requirements helper...');
+ this.serverless.cli.log('Adding Python requirements helper...');
24
25
return fse.copyAsync(
26
path.resolve(__dirname, 'unzip_requirements.py'),
@@ -34,7 +34,7 @@ class ServerlessPythonRequirements {
34
35
removeVendorHelper() {
36
if (this.custom().zip && this.custom().cleanupZipHelper) {
37
- this.serverless.cli.log('Adding Python requirements helper...');
+ this.serverless.cli.log('Removing Python requirements helper...');
38
return fse.removeAsync('unzip_requirements.py');
39
}
40
};
0 commit comments