351646d5bd
except when it already exists, of course
6 lines
108 B
Bash
Executable file
6 lines
108 B
Bash
Executable file
#!/bin/sh
|
|
exec 2>&1
|
|
set -e
|
|
[ -r conf ] && . ./conf
|
|
adb ${OPTS:=start-server -P5037}
|
|
exec chpst -b adb pause
|