We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bc6e1f + ed081b9 commit 301d3a1Copy full SHA for 301d3a1
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
- Support building in a directory other than the source directory. Set `BUILDDIR` (#98).
4
- Testing a server instance now includes testing for the expected server role.
5
+- On linux, also look for `arangod` in `/usr/local/sbin` (#93).
6
7
# Changes from version 0.10.1 to 0.10.2
8
main.go
@@ -304,6 +304,7 @@ func findExecutable() {
304
case "linux":
305
pathList = append(pathList,
306
"/usr/sbin/arangod",
307
+ "/usr/local/sbin/arangod",
308
)
309
}
310
// Add local folder to search path
0 commit comments