debian-mirror-gitlab/debian/patches/tweaks/0080-search-binaries-in-path.patch
2023-07-09 09:48:07 +05:30

28 lines
889 B
Diff

Description: Search for gitlab-workhorse binaries also in the environment in PATH variable
Author: Nilesh Patra <npatra974@gmail.com>
Last-Update: 2021-01-26
--- a/workhorse/internal/testhelper/testhelper.go
+++ b/workhorse/internal/testhelper/testhelper.go
@@ -12,6 +12,7 @@
"runtime"
"testing"
"time"
+ "os/exec"
"github.com/golang-jwt/jwt/v5"
"github.com/stretchr/testify/require"
@@ -96,8 +97,11 @@
rootDir := RootDir()
for _, exe := range workhorseExecutables {
- if _, err := os.Stat(path.Join(rootDir, exe)); os.IsNotExist(err) {
- return fmt.Errorf("cannot find executable %s. Please run 'make prepare-tests'", exe)
+ _, err := exec.LookPath(exe)
+ if err != nil {
+ if _, rootdirerr := os.Stat(path.Join(rootDir, exe)); os.IsNotExist(rootdirerr) {
+ return fmt.Errorf("cannot find executable %s. Please run 'make prepare-tests'", exe)
+ }
}
}