9 lines
95 B
Bash
9 lines
95 B
Bash
#! /bin/sh
|
|
|
|
if [ "$1" = "--release" ]; then
|
|
debug=""
|
|
shift
|
|
else
|
|
debug="--debug"
|
|
fi
|