Clean unused bash script.

This commit is contained in:
Cheng Zhao 2013-06-25 09:20:55 +08:00
parent 3a609e9133
commit c651e96708

View file

@ -1,14 +0,0 @@
if [ -t 0 ] ; then # If stdout is a terminal
INTERACTIVE=1
fi
polite_curl()
{
if [ $INTERACTIVE ] ; then
CURL_ARGS="--progress-bar"
else
CURL_ARGS="-fsS"
fi
curl $CURL_ARGS $*
}