Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2021-01-20 23:54:18 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2021-01-20 23:54:18 +0300
commit943eff75023ae3c1eaad73e18075431d3192ab1b (patch)
tree3e8ba697758b576cd16dbdef26d0428b796ec119 /build-release.sh
parent14835d72e1c7177616b71193142558f06a6e61e9 (diff)
Updated timestamp service after verisign was shut down
Diffstat (limited to 'build-release.sh')
-rw-r--r--build-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-release.sh b/build-release.sh
index 70a9809e9..757a9edef 100644
--- a/build-release.sh
+++ b/build-release.sh
@@ -222,7 +222,7 @@ if [ -f "${AUTHENTICODE_PFXFILE}" ] && [ -f "${AUTHENTICODE_PASSWORD}" ]; then
authenticode_sign() {
NEST=""
for hashalg in sha1 sha256; do
- SIGN_MSG=$(osslsigncode sign -pkcs12 "${AUTHENTICODE_PFXFILE}" -pass "${PFX_PASS}" -n "Duplicati" -i "http://www.duplicati.com" -h "${hashalg}" ${NEST} -t "http://timestamp.verisign.com/scripts/timstamp.dll" -in "$1" -out tmpfile)
+ SIGN_MSG=$(osslsigncode sign -pkcs12 "${AUTHENTICODE_PFXFILE}" -pass "${PFX_PASS}" -n "Duplicati" -i "http://www.duplicati.com" -h "${hashalg}" ${NEST} -t "http://timestamp.globalsign.com/scripts/timestamp.dll" -in "$1" -out tmpfile)
if [ "${SIGN_MSG}" != "Succeeded" ]; then echo "${SIGN_MSG}"; fi
mv tmpfile "$1"
NEST="-nest"