File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ module.exports = {
94
94
const activity = name || this . options . name ;
95
95
if ( this . serverless . service . stepFunctions . activities . indexOf ( activity ) < 0 ) {
96
96
const errorMessage = [
97
- `Activity "${ activity } " is not exists in serverless.yml` ,
97
+ `Activity "${ activity } " does not exist in serverless.yml` ,
98
98
] . join ( '' ) ;
99
99
throw new this . serverless . classes . Error ( errorMessage ) ;
100
100
}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ module.exports = {
65
65
if ( typeof this . serverless . service . stepFunctions . stateMachines [ this . options . name ]
66
66
=== 'undefined' ) {
67
67
const errorMessage = [
68
- `Step function "${ this . options . name } " is not exists ` ,
68
+ `Step function "${ this . options . name } " does not exist ` ,
69
69
] . join ( '' ) ;
70
70
throw new this . serverless . classes . Error ( errorMessage ) ;
71
71
}
You can’t perform that action at this time.
0 commit comments