diff options
author | Julien Pierre <julien.pierre@oracle.com> | 2014-03-06 18:49:32 +0100 |
---|---|---|
committer | Julien Pierre <julien.pierre@oracle.com> | 2014-03-06 18:49:32 +0100 |
commit | 219cee9e86d41aa12d5e8c8098e8112ed709475e (patch) | |
tree | 1162d1ac83e03001c991bec7bb66feba1991832b | |
parent | 02e000be042a5eb1f75415f7c7c2f6308cd5aa6b (diff) | |
download | nss-hg-219cee9e86d41aa12d5e8c8098e8112ed709475e.tar.gz |
Bug 979752, remove non-portable option cp -v, r=kaie
-rwxr-xr-x | tests/cert/cert.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cert/cert.sh b/tests/cert/cert.sh index ca858f50b..313c663f6 100755 --- a/tests/cert/cert.sh +++ b/tests/cert/cert.sh @@ -940,8 +940,8 @@ cert_ssl() fi echo "$SCRIPTNAME: Creating database for OCSP stapling tests ===============" - echo "cp -rv ${SERVERDIR} ${STAPLINGDIR}" - cp -rv ${R_SERVERDIR} ${R_STAPLINGDIR} + echo "cp -r ${SERVERDIR} ${STAPLINGDIR}" + cp -r ${R_SERVERDIR} ${R_STAPLINGDIR} pk12u -o ${R_STAPLINGDIR}/ca.p12 -n TestCA -k ${R_PWFILE} -w ${R_PWFILE} -d ${R_CADIR} pk12u -i ${R_STAPLINGDIR}/ca.p12 -k ${R_PWFILE} -w ${R_PWFILE} -d ${R_STAPLINGDIR} } |