Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/scripts/ci/linux/run-server.sh
blob: 79b02fd02195400d0b846d74fa2dfa65187cca96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

cd "`dirname \"$0\"`"

terms="
x-terminal-emulator
konsole
gnome-terminal.wrapper
xfce4-terminal.wrapper
koi8rxterm
lxterm
uxterm
xterm"

for term in $terms; do
  $term -e ./starbound_server $@
  if [ $? -eq 0 ]; then
    exit 0;
  fi
done

exit 1