diff options
author | Nick Thomas <nick@gitlab.com> | 2021-09-08 10:06:06 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2021-09-08 10:06:06 +0000 |
commit | 7884a4420ac8ffd3ee34589c0f8e0d25ca0fd076 (patch) | |
tree | 612c450010837d2dde0f11446c4cbe79bc20af49 /cmd/gitlab-shell-authorized-principals-check/main.go | |
parent | 07bbfd279bc236229d95942372370b955db08b75 (diff) | |
parent | 8b4621aa6cba1674192ffb6e3c3e801a567f2516 (diff) | |
download | gitlab-shell-7884a4420ac8ffd3ee34589c0f8e0d25ca0fd076.tar.gz |
Merge branch 'remove/generic-args' into 'main'
refactor: remove commandargs.GenericArgs
Closes #212
See merge request gitlab-org/gitlab-shell!506
Diffstat (limited to 'cmd/gitlab-shell-authorized-principals-check/main.go')
-rw-r--r-- | cmd/gitlab-shell-authorized-principals-check/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gitlab-shell-authorized-principals-check/main.go b/cmd/gitlab-shell-authorized-principals-check/main.go index 8d0aba8..87f7fa3 100644 --- a/cmd/gitlab-shell-authorized-principals-check/main.go +++ b/cmd/gitlab-shell-authorized-principals-check/main.go @@ -20,7 +20,7 @@ func main() { ErrOut: os.Stderr, } - executable, err := executable.New(executable.AuthorizedPrincipalsCheck) + executable, err := executable.New(executable.AuthorizedPrincipalsCheck, true) if err != nil { fmt.Fprintln(readWriter.ErrOut, "Failed to determine executable, exiting") os.Exit(1) |