cli/internal/licenses/embed_default.go
Babak K. Shandiz c9543e7489
fix(licenses): implement VCS-friendly embedding
Signed-off-by: Babak K. Shandiz <babakks@github.com>
2026-02-25 14:59:52 +00:00

15 lines
516 B
Go

// This file is necessary to allow building on platforms that we do not have
// official release builds for. Without this, `go build` or `go install` calls
// would fail due to undefined symbols that are expected to be included in the
// build.
//go:build !(darwin && (amd64 || arm64)) && !(linux && (386 || amd64 || arm || arm64)) && !(windows && (386 || amd64 || arm64))
package licenses
import "embed"
const rootDir = ""
// embedFS is left empty to indicate there's no embedded content.
var embedFS embed.FS