File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -100,10 +100,10 @@ class ServerlessPythonRequirements {
100
100
'install' ,
101
101
] ,
102
102
} ,
103
- cleanStatic : {
104
- usage : 'Removes all items in the static cache (if present)' ,
103
+ cleanCache : {
104
+ usage : 'Removes all items in the pip download/ static cache (if present)' ,
105
105
lifecycleEvents : [
106
- 'cleanStatic ' ,
106
+ 'cleanCache ' ,
107
107
] ,
108
108
} ,
109
109
} ,
@@ -131,7 +131,7 @@ class ServerlessPythonRequirements {
131
131
return BbPromise . resolve ( ) ;
132
132
} ;
133
133
134
- const cleanStatic = ( ) => BbPromise . bind ( this )
134
+ const cleanCache = ( ) => BbPromise . bind ( this )
135
135
. then ( cleanupCache ) ;
136
136
137
137
@@ -143,7 +143,7 @@ class ServerlessPythonRequirements {
143
143
'after:deploy:function:packageFunction' : after ,
144
144
'requirements:install:install' : before ,
145
145
'requirements:clean:clean' : clean ,
146
- 'requirements:cleanStatic:cleanStatic ' : cleanStatic ,
146
+ 'requirements:cleanCache:cleanCache ' : cleanCache ,
147
147
} ;
148
148
}
149
149
}
You can’t perform that action at this time.
0 commit comments