Revert "Fix build on Solaris"

This reverts commit e212b64823.
This commit is contained in:
Jakob Borg 2014-09-28 23:09:55 +02:00
parent e212b64823
commit 174befe729
4 changed files with 11 additions and 16 deletions

View File

@ -9,6 +9,8 @@ import (
"errors" "errors"
"strconv" "strconv"
"strings" "strings"
"bitbucket.org/kardianos/osext"
) )
type Release struct { type Release struct {
@ -38,7 +40,12 @@ func init() {
func UpgradeTo(rel Release, archExtra string) error { func UpgradeTo(rel Release, archExtra string) error {
select { select {
case <-upgradeUnlocked: case <-upgradeUnlocked:
err := upgradeTo(rel, archExtra) path, err := osext.Executable()
if err != nil {
upgradeUnlocked <- true
return err
}
err = upgradeTo(path, rel, archExtra)
// If we've failed to upgrade, unlock so that another attempt could be made // If we've failed to upgrade, unlock so that another attempt could be made
if err != nil { if err != nil {
upgradeUnlocked <- true upgradeUnlocked <- true

View File

@ -19,16 +19,10 @@ import (
"path/filepath" "path/filepath"
"runtime" "runtime"
"strings" "strings"
"bitbucket.org/kardianos/osext"
) )
// Upgrade to the given release, saving the previous binary with a ".old" extension. // Upgrade to the given release, saving the previous binary with a ".old" extension.
func upgradeTo(rel Release, archExtra string) error { func upgradeTo(path string, rel Release, archExtra string) error {
path, err := osext.Executable()
if err != nil {
return err
}
osName := runtime.GOOS osName := runtime.GOOS
if osName == "darwin" { if osName == "darwin" {
// We call the darwin release bundles macosx because that makes more // We call the darwin release bundles macosx because that makes more

View File

@ -6,7 +6,7 @@
package upgrade package upgrade
func upgradeTo(rel Release, extra string) error { func upgradeTo(path string, rel Release, extra string) error {
return ErrUpgradeUnsupported return ErrUpgradeUnsupported
} }

View File

@ -19,16 +19,10 @@ import (
"path/filepath" "path/filepath"
"runtime" "runtime"
"strings" "strings"
"bitbucket.org/kardianos/osext"
) )
// Upgrade to the given release, saving the previous binary with a ".old" extension. // Upgrade to the given release, saving the previous binary with a ".old" extension.
func upgradeTo(rel Release, archExtra string) error { func upgradeTo(path string, rel Release, archExtra string) error {
path, err := osext.Executable()
if err != nil {
return err
}
expectedRelease := fmt.Sprintf("syncthing-%s-%s%s-%s.", runtime.GOOS, runtime.GOARCH, archExtra, rel.Tag) expectedRelease := fmt.Sprintf("syncthing-%s-%s%s-%s.", runtime.GOOS, runtime.GOARCH, archExtra, rel.Tag)
if debug { if debug {
l.Debugf("expected release asset %q", expectedRelease) l.Debugf("expected release asset %q", expectedRelease)