10000 Repair startLocalCluster.sh script w.r.t. XTERM and XTERMOPTIONS. · lethalbrains/arangodb@66f1fce · GitHub
[go: up one dir, main page]

Skip to content

Commit 66f1fce

Browse files
committed
Repair startLocalCluster.sh script w.r.t. XTERM and XTERMOPTIONS.
1 parent ce9ca50 commit 66f1fce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/startLocalCluster.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/bash
22
if [ -z "$XTERM" ] ; then
3-
XTERM=xterm
3+
XTERM=x-terminal-emulator
4+
fi
5+
if [ -z "$XTERMOPTIONS" ] ; then
6+
XTERMOPTIONS="--geometry=80x43"
47
fi
5-
68

79
if [ ! -d arangod ] || [ ! -d arangosh ] || [ ! -d UnitTests ] ; then
810
echo Must be started in the main ArangoDB source directory.

0 commit comments

Comments
 (0)
0