Removing importet test bashism in frontends/cgi/live-build-cgi.

This commit is contained in:
Daniel Baumann 2013-05-27 17:03:50 +02:00
parent 3c59c82e1d
commit e44fe9ba9e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ echo
#QUERY_STRING=`cat /dev/stdin`
#QUERY_STRING=$(cat /dev/stdin)
# If we are passed something then read it in.
if [[ "$REQUEST_METHOD" = "POST" ]] && [[ "$CONTENT_LENGTH" -gt 0 ]]
if [ "$REQUEST_METHOD" = "POST" ] && [ "$CONTENT_LENGTH" -gt 0 ]
then
read -n $CONTENT_LENGTH POST_DATA <&0
fi