We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1dd8150 + f6ba5ac commit cc72f5dCopy full SHA for cc72f5d
cmd/scw/main.go
@@ -3,6 +3,9 @@
3
// license that can be found in the LICENSE.md file.
4
5
// Manage BareMetal Servers from Command Line (as easily as with Docker)
6
+
7
+// +build go1.5
8
9
package main
10
11
import (
cmd/scw/main_unsupported.go
@@ -0,0 +1,7 @@
1
+// +build !go1.5
2
+package main
+func error() {
+ `Bad go version, please install a version greater than or equal to 1.5`
+}
0 commit comments