First commit
This commit is contained in:
17
third_party/github.com/fsouza/go-dockerclient/utils/uname_darwin.go
vendored
Normal file
17
third_party/github.com/fsouza/go-dockerclient/utils/uname_darwin.go
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright 2014 Docker authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the DOCKER-LICENSE file.
|
||||
|
||||
package utils
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
type Utsname struct {
|
||||
Release [65]byte
|
||||
}
|
||||
|
||||
func uname() (*Utsname, error) {
|
||||
return nil, errors.New("Kernel version detection is not available on darwin")
|
||||
}
|
Reference in New Issue
Block a user