Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions internal/deployer/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package deployer

import (
"context"
"os"
"time"

"github.com/agentuity/cli/internal/bundler"
Expand Down Expand Up @@ -75,6 +76,7 @@ func PreflightCheck(ctx context.Context, logger logger.Logger, data DeployPrefli
ProjectDir: data.Dir,
Production: true,
Project: data.Project,
Writer: os.Stderr,
}
if err := bundler.Bundle(bundleCtx); err != nil {
return nil, err
Expand Down
Loading