mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-05 05:01:28 +00:00
We removed it, because upstream removed it. But now it will be coming back, so work with it either way. Signed-off-by: Vincent Batts <vbatts@redhat.com>
15 lines
249 B
Go
15 lines
249 B
Go
// +build linux,btrfs_noversion
|
|
|
|
package btrfs
|
|
|
|
// TODO(vbatts) remove this work-around once supported linux distros are on
|
|
// btrfs utililties of >= 3.16.1
|
|
|
|
func BtrfsBuildVersion() string {
|
|
return "-"
|
|
}
|
|
|
|
func BtrfsLibVersion() int {
|
|
return -1
|
|
}
|