mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3c136333af
They say we should only use the BTRFS_LIB_VERSION They will no longer support this since it had to be managed manually Docker-DCO-1.1-Signed-off-by: Dan Walsh <dwalsh@redhat.com> (github: rhatdan)
10 lines
200 B
Go
10 lines
200 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 BtrfsLibVersion() int {
|
|
return -1
|
|
}
|