mirror of
https://github.com/clearlinux/docker.git
synced 2026-06-16 02:35:49 +00:00
17ce34116a
Signed-off-by: Hu Keping <hukeping@huawei.com>
10 lines
199 B
Go
10 lines
199 B
Go
// +build experimental
|
|
|
|
package utils
|
|
|
|
// ExperimentalBuild is a stub which always returns true for
|
|
// builds that include the "experimental" build tag
|
|
func ExperimentalBuild() bool {
|
|
return true
|
|
}
|