Skip to content

Commit 1de3102

Browse files
committed
fix: missed the porcelain options
1 parent 8fc5abc commit 1de3102

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

go/porcelain/deploy.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ type DeployOptions struct {
8181
EdgeRedirectsDir string
8282
BuildDir string
8383
LargeMediaEnabled bool
84+
AwaitReadySignal bool
8485

8586
IsDraft bool
8687
SkipRetry bool
@@ -260,10 +261,11 @@ func (n *Netlify) DoDeploy(ctx context.Context, options *DeployOptions, deploy *
260261
options.functionsConfig = functionsConfig
261262

262263
deployFiles := &models.DeployFiles{
263-
Files: options.files.Sums,
264-
Draft: options.IsDraft,
265-
Async: n.overCommitted(options.files),
266-
Framework: options.Framework,
264+
Files: options.files.Sums,
265+
Draft: options.IsDraft,
266+
Async: n.overCommitted(options.files),
267+
Framework: options.Framework,
268+
AwaitReadySignal: options.AwaitReadySignal,
267269
}
268270
if options.functions != nil {
269271
deployFiles.Functions = options.functions.Sums

0 commit comments

Comments
 (0)