summaryrefslogtreecommitdiffhomepage
path: root/internal/version
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-05-30 20:47:56 -0400
committerDax Raad <[email protected]>2025-05-30 20:48:36 -0400
commitf3da73553c45f17e04b1e77cb13eb0fca714d1bd (patch)
treea24317a19e1ab2a89da50db669dc6894f15d00d1 /internal/version
parent9a26b3058ffc1023e5c7e54b6d571c903d15888e (diff)
downloadopencode-f3da73553c45f17e04b1e77cb13eb0fca714d1bd.tar.gz
opencode-f3da73553c45f17e04b1e77cb13eb0fca714d1bd.zip
sync
Diffstat (limited to 'internal/version')
-rw-r--r--internal/version/version.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/internal/version/version.go b/internal/version/version.go
deleted file mode 100644
index 69fd5282b..000000000
--- a/internal/version/version.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package version
-
-import "runtime/debug"
-
-// Build-time parameters set via -ldflags
-var Version = "unknown"
-
-// A user may install pug using `go install github.com/sst/opencode@latest`.
-// without -ldflags, in which case the version above is unset. As a workaround
-// we use the embedded build version that *is* set when using `go install` (and
-// is only set for `go install` and not for `go build`).
-func init() {
- info, ok := debug.ReadBuildInfo()
- if !ok {
- // < go v1.18
- return
- }
- mainVersion := info.Main.Version
- if mainVersion == "" || mainVersion == "(devel)" {
- // bin not built using `go install`
- return
- }
- // bin built using `go install`
- Version = mainVersion
-}