File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 1+ // Copyright 2025 The Gitea Authors. All rights reserved.
2+ // SPDX-License-Identifier: MIT
3+
4+ //go:build windows
5+
6+ package main
7+
8+ // Golang has the ability to load OS's timezone data from most UNIX systems (https://github.com/golang/go/blob/master/src/time/zoneinfo_unix.go)
9+ // Even if the timezone data is missing, users could install the related packages to get it.
10+ // But on Windows, although `zoneinfo_windows.go` tries to load the timezone data from Windows registry,
11+ // some users still suffer from the issue that the timezone data is missing: https://github.com/go-gitea/gitea/issues/33235
12+ // So we import the tzdata package to make sure the timezone data is included in the binary.
13+ //
14+ // For non-Windows package builders, they could still use the "TAGS=timetzdata" to include the tzdata package in the binary.
15+ // If we decided to add the tzdata for other platforms, modify the "go:build" directive above.
16+ import _ "time/tzdata"
You can’t perform that action at this time.
0 commit comments