1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Merge pull request #62 from niesongsong/patch-1

Update options.sh
This commit is contained in:
winlin 2014-05-12 12:19:51 +08:00
commit 6015744ad8

View file

@ -243,7 +243,7 @@ function parse_user_option_to_value_and_option() {
case "$option" in
-*=*)
value=`echo "$option" | sed -e 's|[-_a-zA-Z0-9/]*=||'`
option=`echo "$option" | sed -e 's|=[-_a-zA-Z0-9/]*||'`
option=`echo "$option" | sed -e 's|=[-_a-zA-Z0-9/.]*||'`
;;
*) value="" ;;
esac