Skip to content

Commit cb842dc

Browse files
committed
Update certificate logic in build scripts for Windows signing key
1 parent 40739a5 commit cb842dc

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

build.sh

+9-7
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ if [[ "$SIGN" == "true" ]]; then
114114
exit 1
115115
fi
116116

117-
if [[ "$(uname -s)" == "Darwin" || "$(uname -s)" == "MINGW"* ]]; then
117+
if [[ "$(uname -s)" == "Darwin" ]]; then
118118
log_info "Configuring environment for signing of binaries"
119119
if [[ -z ${CSC_LINK-} ]]; then
120120
log_error "The variable CSC_LINK is not set. It needs to point to a file containing the"
@@ -128,13 +128,15 @@ if [[ "$SIGN" == "true" ]]; then
128128
fi
129129
# macOS: This needs to be set to 'true' to activate signing, even when CSC_LINK is set.
130130
export CSC_IDENTITY_AUTO_DISCOVERY=true
131-
132-
if [[ "$(uname -s)" == "MINGW"* ]]; then
133-
CERT_FILE=$CSC_LINK
134-
CERT_PASSPHRASE=$CSC_KEY_PASSWORD
135-
unset CSC_LINK CSC_KEY_PASSWORD
136-
export CSC_IDENTITY_AUTO_DISCOVERY=false
131+
elif [[ "$(uname -s)" == "MINGW"* ]]; then
132+
if [[ -z ${CERT_HASH-} ]]; then
133+
log_error "The variable CERT_HASH is not set. It needs to be set to the thumbprint of"
134+
log_error "the signing certificate."
135+
exit 1
137136
fi
137+
138+
unset CSC_LINK CSC_KEY_PASSWORD
139+
export CSC_IDENTITY_AUTO_DISCOVERY=false
138140
else
139141
unset CSC_LINK CSC_KEY_PASSWORD
140142
export CSC_IDENTITY_AUTO_DISCOVERY=false

ci/buildserver-build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ source "$SCRIPT_DIR/buildserver-config.sh"
2525

2626
# Ask for the passphrase to the signing keys
2727
case "$(uname -s)" in
28-
Darwin*|MINGW*|MSYS_NT*)
28+
Darwin*)
2929
if [[ -z ${CSC_KEY_PASSWORD-} ]]; then
3030
read -rsp "CSC_KEY_PASSWORD = " CSC_KEY_PASSWORD
3131
echo ""

gui/tasks/distribution.js

-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ const config = {
134134
],
135135
artifactName: 'MullvadVPN-${version}.${ext}',
136136
publisherName: 'Mullvad VPN AB',
137-
signingHashAlgorithms: ['sha256'],
138-
signDlls: true,
139137
extraResources: [
140138
{ from: distAssets('mullvad.exe'), to: '.' },
141139
{ from: distAssets('mullvad-problem-report.exe'), to: '.' },

0 commit comments

Comments
 (0)