Skip to content

Commit 301d3a1

Browse files
authored
Merge pull request #101 from arangodb-helper/usr_local_sbin
On linux, also look for arangod in /usr/local/sbin
2 parents 5bc6e1f + ed081b9 commit 301d3a1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Support building in a directory other than the source directory. Set `BUILDDIR` (#98).
44
- Testing a server instance now includes testing for the expected server role.
5+
- On linux, also look for `arangod` in `/usr/local/sbin` (#93).
56

67
# Changes from version 0.10.1 to 0.10.2
78

main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ func findExecutable() {
304304
case "linux":
305305
pathList = append(pathList,
306306
"/usr/sbin/arangod",
307+
"/usr/local/sbin/arangod",
307308
)
308309
}
309310
// Add local folder to search path

0 commit comments

Comments
 (0)