Skip to content

Commit 0624394

Browse files
committed
fix: adjust build tag position in export_offline.go
Signed-off-by: mikkeyf <1647228132@qq.com>
1 parent 964a5b2 commit 0624394

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cmd/subcmd/export_offline.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build offline
2-
// +build offline
3-
41
// Copyright 2025 openGemini Authors
52
//
63
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,6 +12,9 @@
1512
// See the License for the specific language governing permissions and
1613
// limitations under the License.
1714

15+
//go:build offline
16+
// +build offline
17+
1818
package subcmd
1919

2020
import (

cmd/subcmd/export_online.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build !offline
2-
// +build !offline
3-
41
// Copyright 2025 openGemini Authors
52
//
63
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,6 +12,9 @@
1512
// See the License for the specific language governing permissions and
1613
// limitations under the License.
1714

15+
//go:build !offline
16+
// +build !offline
17+
1818
package subcmd
1919

2020
import (

0 commit comments

Comments
 (0)