File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,13 @@ async function pipfileToRequirements() {
89
89
if ( stderrBufferContent . includes ( 'FileNotFoundError' ) ) {
90
90
// No previous Pipfile.lock, we will try to generate it here
91
91
if ( this . log ) {
92
- this . log . warning ( 'No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.' ) ;
92
+ this . log . warning (
93
+ 'No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.'
94
+ ) ;
93
95
} else {
94
- this . serverless . cli . log ( 'WARNING: No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.' ) ;
96
+ this . serverless . cli . log (
97
+ 'WARNING: No Pipfile.lock found! Review https://pipenv.pypa.io/en/latest/pipfile/ for recommendations.'
98
+ ) ;
95
99
}
96
100
await spawn ( 'pipenv' , [ 'lock' ] , {
97
101
cwd : this . servicePath ,
You can’t perform that action at this time.
0 commit comments