445bc1494c
For some reason this untagged commit is the one referred to in the main repository; this might be a mistake, but we'll have to package it for now to follow upstream.
14 lines
358 B
Diff
14 lines
358 B
Diff
diff --git a/internal/config/config.go b/internal/config/config.go
|
|
index 037c9602..3d5409dc 100644
|
|
--- a/internal/config/config.go
|
|
+++ b/internal/config/config.go
|
|
@@ -185,7 +185,7 @@ func checkExecutable(path string) error {
|
|
return err
|
|
}
|
|
|
|
- if fi.Mode()&0755 < 0755 {
|
|
+ if fi.Mode()&0555 < 0555 {
|
|
return fmt.Errorf("not executable: %v", path)
|
|
}
|
|
|