summaryrefslogtreecommitdiffstats
path: root/build/test-echo.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--build/test-echo.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/build/test-echo.go b/build/test-echo.go
new file mode 100644
index 0000000..093364f
--- /dev/null
+++ b/build/test-echo.go
@@ -0,0 +1,20 @@
+// Copyright 2023 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+//go:build ignore
+
+package main
+
+import (
+ "fmt"
+ "io"
+ "os"
+)
+
+func main() {
+ _, err := io.Copy(os.Stdout, os.Stdin)
+ if err != nil {
+ fmt.Fprintf(os.Stderr, "Error: %v", err)
+ os.Exit(1)
+ }
+}