Files
go-git/repository_unix_test.go
2017-09-01 09:17:23 -05:00

12 lines
264 B
Go

// +build !plan9,!windows
package git
import "fmt"
// preReceiveHook returns the bytes of a pre-receive hook script
// that prints m before exiting successfully
func preReceiveHook(m string) []byte {
return []byte(fmt.Sprintf("#!/bin/sh\nprintf '%s'\n", m))
}