Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

EVEREST-358 Disable list commands #165

Merged
merged 5 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
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 commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

rootCmd.AddCommand(newInstallCmd(l))
// rootCmd.AddCommand(newProvisionCmd(l))
rootCmd.AddCommand(newListCmd(l))
//rootCmd.AddCommand(newListCmd(l))

Check failure on line 41 in commands/root.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

commentFormatting: put a space between `//` and comment text (gocritic)

Check failure on line 41 in commands/root.go

View workflow job for this annotation

GitHub Actions / Check (1.21.x, false)

commentFormatting: put a space between `//` and comment text (gocritic)
gen1us2k marked this conversation as resolved.
Show resolved Hide resolved
rootCmd.AddCommand(newDeleteCmd(l))

return rootCmd
Expand Down
Loading