cmd/gitannex: Remove assumption in e2e test version check

This commit is contained in:
Dan McArdle 2024-04-17 09:05:01 -04:00 committed by Nick Craig-Wood
parent f82822baca
commit 96d3adc771
1 changed files with 2 additions and 1 deletions

View File

@ -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()