Skip to content

Commit 4796859

Browse files
committed
fix request for removed functions
1 parent 7cd6488 commit 4796859

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

internal/commands/deploy/deploy.go

+7
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ func (d *DeployCmd) deploySync() ([]mantil.FunctionUpdate, error) {
116116
functionUpdates = append(functionUpdates, fu)
117117
}
118118

119+
for _, f := range removedFunctions {
120+
functionUpdates = append(functionUpdates, mantil.FunctionUpdate{
121+
Name: f,
122+
Removed: true,
123+
})
124+
}
125+
119126
return functionUpdates, nil
120127
}
121128

0 commit comments

Comments
 (0)