Skip to content

Commit 17a13f8

Browse files
committed
Fix rename issues
Tool: gitpod/catfood.gitpod.cloud
1 parent 772d51a commit 17a13f8

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.gitpod.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
image: gitpod/workspace-full
2-
3-
checkoutLocation: enterprise-deployment-toolkit
4-
workspaceLocation: enterprise-deployment-toolkit/enterprise-deployment-toolkit.code-workspace
1+
image: gitpod/workspace-full

gitpod-network-check/cmd/checks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var checkCommand = &cobra.Command{ // nolint:gochecknoglobals
2727
RunE: func(cmd *cobra.Command, args []string) error {
2828
ctx := cmd.Context()
2929

30-
runner, err := testrunner.NewRunner(ctx, Flags.Mode, &NetworkConfig)
30+
runner, err := testrunner.NewRunner(ctx, Flags.RunnerType, &NetworkConfig)
3131
if err != nil {
3232
return fmt.Errorf("❌ failed to create test runner: %v", err)
3333
}

gitpod-network-check/cmd/cleanup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var cleanCommand = &cobra.Command{ // nolint:gochecknoglobals
1717
ctx := cmd.Context()
1818

1919
log.Infof("ℹ️ Running cleanup")
20-
runner, err := runner.LoadRunnerFromTags(ctx, Flags.Mode, &NetworkConfig)
20+
runner, err := runner.LoadRunnerFromTags(ctx, Flags.RunnerType, &NetworkConfig)
2121
if err != nil {
2222
return fmt.Errorf("❌ failed to create test runner: %v", err)
2323
}

0 commit comments

Comments
 (0)