mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
17c19f395f
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
14 lines
249 B
Go
14 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
|
|
}
|