mirror of
https://github.com/Luzifer/ansible-role-version.git
synced 2024-12-23 11:01:20 +00:00
11 lines
264 B
Go
11 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))
|
|
}
|