Skip to content

Commit 625f9d5

Browse files
authored
fixed call to autopilot (#9)
1 parent 700640b commit 625f9d5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=v0.0.13
1+
VERSION=v0.0.14
22
OUT_DIR=dist
33
YEAR?=$(shell date +"%Y")
44

cmd/commands/runtime.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,9 @@ func createCodefreshResources(ctx context.Context, cloneOpts *git.CloneOptions,
207207

208208
func createApp(ctx context.Context, cloneOpts *git.CloneOptions, projectName, appName, appURL, appType, namespace string) error {
209209
return apcmd.RunAppCreate(ctx, &apcmd.AppCreateOptions{
210-
CloneOpts: cloneOpts,
211-
ProjectName: projectName,
210+
CloneOpts: cloneOpts,
211+
AppsCloneOpts: &git.CloneOptions{},
212+
ProjectName: projectName,
212213
AppOpts: &application.CreateOptions{
213214
AppName: appName,
214215
AppSpecifier: appURL,

0 commit comments

Comments
 (0)