From 634a7b3fad26e8587b129b317bb2c9a913b1aae0 Mon Sep 17 00:00:00 2001 From: Mark Mentovai Date: Thu, 16 Dec 2021 11:28:23 -0500 Subject: [PATCH] mac: add go.mod for upload_system_symbols MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was created by running “go mod init upload_system_symbols”. This is necessary for “go build” to work in recent versions of golang. Previously, errors such as this were produced: go: cannot find main module, but found .git/config in …/breakpad/src to create a module there, run: cd ../../../.. && go mod init Change-Id: Ia88834aec2eb8ee01db452889c525a5f6ebefa25 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3345400 Reviewed-by: Robert Sesek --- src/tools/mac/upload_system_symbols/go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/tools/mac/upload_system_symbols/go.mod diff --git a/src/tools/mac/upload_system_symbols/go.mod b/src/tools/mac/upload_system_symbols/go.mod new file mode 100644 index 00000000..ff21bba9 --- /dev/null +++ b/src/tools/mac/upload_system_symbols/go.mod @@ -0,0 +1,3 @@ +module upload_system_symbols + +go 1.17