Revert "Build for Solaris"

This reverts commit 5a2328d9a5.
This commit is contained in:
Jakob Borg 2014-06-08 07:37:51 +02:00
parent b2988cdd35
commit 92499af323
3 changed files with 1 additions and 10 deletions

View File

@ -121,7 +121,7 @@ case "$1" in
godep go build ./cmd/stpidx
godep go build ./cmd/stcli
for os in darwin-amd64 linux-386 linux-amd64 freebsd-amd64 windows-amd64 windows-386 solaris-amd64 ; do
for os in darwin-amd64 linux-386 linux-amd64 freebsd-amd64 windows-amd64 windows-386 ; do
export GOOS=${os%-*}
export GOARCH=${os#*-}

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// +build !solaris
package main
import (

View File

@ -1,7 +0,0 @@
package main
import "errors"
func upgrade() error {
return errors.New("Upgrade currently unsupported on Solaris")
}