aboutsummaryrefslogtreecommitdiffstats
path: root/repository_windows_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'repository_windows_test.go')
-rw-r--r--repository_windows_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/repository_windows_test.go b/repository_windows_test.go
new file mode 100644
index 0000000..bec0acd
--- /dev/null
+++ b/repository_windows_test.go
@@ -0,0 +1,9 @@
+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("#!C:/Program\\ Files/Git/usr/bin/sh.exe\nprintf '%s'\n", m))
+}