mirror of
https://github.com/docker/docs.git
synced 2026-04-01 00:38:52 +07:00
15 lines
248 B
Go
15 lines
248 B
Go
// +build linux,btrfs_noversion
|
|
|
|
package btrfs
|
|
|
|
// TODO(vbatts) remove this work-around once supported linux distros are on
|
|
// btrfs utilities of >= 3.16.1
|
|
|
|
func btrfsBuildVersion() string {
|
|
return "-"
|
|
}
|
|
|
|
func btrfsLibVersion() int {
|
|
return -1
|
|
}
|