Removing importet test bashism in frontends/cgi/live-build-cgi.
This commit is contained in:
parent
3c59c82e1d
commit
e44fe9ba9e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue