Skip to content

Commit 8af96b7

Browse files
author
Aaron Schlesinger
committed
fix(build.go): run the entire mc command
1 parent c69d67c commit 8af96b7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pkg/gitreceive/build.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ func repoCmd(repoDir, first string, others ...string) *exec.Cmd {
3939
// the command outputs its stderr to os.Stderr
4040
func mcCmd(configDir string, args ...string) *exec.Cmd {
4141
cmd := exec.Command("mc", "-C", configDir, "--quiet")
42+
cmd.Args = append(cmd.Args, args...)
4243
cmd.Stderr = os.Stderr
4344
return cmd
4445
}

0 commit comments

Comments
 (0)