changeset 289:c52680b34356

Fixes.
author Edho Arief <edho@myconan.net>
date Thu, 12 Jan 2012 10:43:27 +0300
parents 5fbe9461efea
children 889bd8475ca5 7251d4f5e5c9
files bin/startssl-nginx
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bin/startssl-nginx	Wed Jan 04 11:49:34 2012 +0700
+++ b/bin/startssl-nginx	Thu Jan 12 10:43:27 2012 +0300
@@ -7,9 +7,9 @@
 
 certfile="${1}"
 
-command -v curl 2> /dev/null || _err_fatal "This script requires cURL. Please install it first."
+command -v curl 2>&1 > /dev/null || _err_fatal "This script requires cURL. Please install it first."
 test -z "${certfile}" && _err_fatal "Please specify certificate file."
-test -f "${certfile}" && _err_fatal "Error reading certificate file ${certfile}."
+test -f "${certfile}" || _err_fatal "Error reading certificate file ${certfile}."
 
 for ca in sub.class1.server.ca.pem ca.pem; do
   curl "http://www.startssl.com/certs/${ca}" >> "${certfile}"