Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cmd/scw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
// license that can be found in the LICENSE.md file.

// Manage BareMetal Servers from Command Line (as easily as with Docker)

// +build go1.5

package main

import (
Expand Down
7 changes: 7 additions & 0 deletions cmd/scw/main_unsupported.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// +build !go1.5

package main

func error() {
`Bad go version, please install a version greater than or equal to 1.5`
}