fix bugs in date code setting. fix bug with crlf conversion

master
Don Bright 2014-04-07 16:36:31 -05:00
parent b25f744b25
commit ea4a10c027
2 changed files with 2 additions and 0 deletions

View File

@ -411,6 +411,7 @@ check_ssh_agent()
main()
{
init_variables $*
if [ $DOUPLOAD ]; then
check_ssh_agent
fi

View File

@ -38,6 +38,7 @@ lf2crlf()
echo using awk to convert end of line markers in $fname
awk 'sub("$", "\r")' $fname > $fname".temp"
mv $fname".temp" $fname
return
fi
echo 'warning- cant change eol to cr eol'
}