This is an automated email from the ASF dual-hosted git repository. djwang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry-backup.git
commit 731b4e03f40ad30dfb964b8216c9e79713189a2f Author: woblerr <[email protected]> AuthorDate: Tue Apr 7 19:45:14 2026 +0300 Remove legacy `// +build` directives. The legacy `// +build` form is no longer needed. --- gpbackman.go | 1 - gpbackup.go | 1 - gpbackup_helper.go | 1 - gpbackup_s3_plugin.go | 1 - gprestore.go | 1 - tools.go | 1 - 6 files changed, 6 deletions(-) diff --git a/gpbackman.go b/gpbackman.go index 4d9a65bf..15be1158 100644 --- a/gpbackman.go +++ b/gpbackman.go @@ -1,5 +1,4 @@ //go:build gpbackman -// +build gpbackman /* Licensed to the Apache Software Foundation (ASF) under one diff --git a/gpbackup.go b/gpbackup.go index 9b75b920..e86a90b5 100644 --- a/gpbackup.go +++ b/gpbackup.go @@ -1,5 +1,4 @@ //go:build gpbackup -// +build gpbackup package main diff --git a/gpbackup_helper.go b/gpbackup_helper.go index 60e2933d..fc6b4ed9 100644 --- a/gpbackup_helper.go +++ b/gpbackup_helper.go @@ -1,5 +1,4 @@ //go:build gpbackup_helper -// +build gpbackup_helper package main diff --git a/gpbackup_s3_plugin.go b/gpbackup_s3_plugin.go index 4060f640..38a34af5 100644 --- a/gpbackup_s3_plugin.go +++ b/gpbackup_s3_plugin.go @@ -1,5 +1,4 @@ //go:build gpbackup_s3_plugin -// +build gpbackup_s3_plugin package main diff --git a/gprestore.go b/gprestore.go index ac97c1dd..df3e3db6 100644 --- a/gprestore.go +++ b/gprestore.go @@ -1,5 +1,4 @@ //go:build gprestore -// +build gprestore package main diff --git a/tools.go b/tools.go index 08dff4f6..b740aacd 100644 --- a/tools.go +++ b/tools.go @@ -1,5 +1,4 @@ //go:build tools -// +build tools package tools --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
