Skip to content

Commit 2db2dd2

Browse files
committed
fixed issue 119
1 parent 6415b35 commit 2db2dd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/yamlParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
return this.serverless.yamlParser
1515
.parse(serverlessYmlPath)
1616
.then((serverlessFileParam) => {
17-
this.serverless.variables.populateObject(serverlessFileParam).then((parsedObject) => {
17+
return this.serverless.variables.populateObject(serverlessFileParam).then((parsedObject) => {
1818
this.serverless.service.stepFunctions = {};
1919
this.serverless.service.stepFunctions.stateMachines
2020
= parsedObject.stepFunctions

0 commit comments

Comments
 (0)