Add cli option to keep the browser process running in the foreground

Esse commit está contido em:
probablycorey
2013-08-21 15:05:47 -07:00
commit 986a9ce0a0
2 arquivos alterados com 3 adições e 2 exclusões
+2 -2
Ver Arquivo
@@ -9,7 +9,7 @@ if [ ! -d $ATOM_PATH ]; then
exit 1
fi
while getopts ":whv-:" opt; do
while getopts ":whvf-:" opt; do
case "$opt" in
-)
case "${OPTARG}" in
@@ -24,7 +24,7 @@ while getopts ":whv-:" opt; do
w)
WAIT=1
;;
h|v)
h|v|f)
EXPECT_OUTPUT=1
;;
esac