10 lines
No EOL
145 B
Bash
10 lines
No EOL
145 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
[ -z "$DEBUG" ] || set -x
|
|
|
|
if [ ! -f /app/bumblebee ]; then
|
|
echo "$0: /app/bumblebee not found, I can't start!!"
|
|
exit 1
|
|
fi |