mirror of
https://github.com/rclone/rclone
synced 2024-11-21 22:50:16 +01:00
cmd/gitannex: Remove assumption in e2e test version check
This commit is contained in:
parent
f82822baca
commit
96d3adc771
@ -9,6 +9,7 @@ import (
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
@ -41,7 +42,7 @@ func checkRcloneBinaryVersion() error {
|
||||
if parsed.Version != fs.Version {
|
||||
return fmt.Errorf("expected version %q, but got %q", fs.Version, parsed.Version)
|
||||
}
|
||||
if !parsed.IsGit {
|
||||
if parsed.IsGit != strings.HasSuffix(fs.Version, "-DEV") {
|
||||
return errors.New("expected rclone to be a dev build")
|
||||
}
|
||||
_, tagString := buildinfo.GetLinkingAndTags()
|
||||
|
Loading…
Reference in New Issue
Block a user