Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PBM-1502 - Fix profile sync name #1098

Merged
merged 2 commits into from
Feb 25, 2025
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: 1 addition & 1 deletion cmd/pbm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
follow bool
}

type cliResult interface {

Check failure on line 58 in cmd/pbm/main.go

View workflow job for this annotation

GitHub Actions / runner / golangci-lint

type `cliResult` is unused (unused)
HasError() bool
}

Expand Down Expand Up @@ -478,7 +478,7 @@
Short: "Sync backup list from configuration profile",
RunE: app.wrapRunE(func(cmd *cobra.Command, args []string) (fmt.Stringer, error) {
if len(args) == 1 {
removeConfigProfileOpts.name = args[0]
syncConfigProfileOpts.name = args[0]
}
return handleSyncConfigProfile(app.ctx, app.pbm, syncConfigProfileOpts)
}),
Expand Down
Loading