File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ if [[ "$SIGN" == "true" ]]; then
114
114
exit 1
115
115
fi
116
116
117
- if [[ " $( uname -s) " == " Darwin" || " $( uname -s ) " == " MINGW " * ]]; then
117
+ if [[ " $( uname -s) " == " Darwin" ]]; then
118
118
log_info " Configuring environment for signing of binaries"
119
119
if [[ -z ${CSC_LINK-} ]]; then
120
120
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
128
128
fi
129
129
# macOS: This needs to be set to 'true' to activate signing, even when CSC_LINK is set.
130
130
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
137
136
fi
137
+
138
+ unset CSC_LINK CSC_KEY_PASSWORD
139
+ export CSC_IDENTITY_AUTO_DISCOVERY=false
138
140
else
139
141
unset CSC_LINK CSC_KEY_PASSWORD
140
142
export CSC_IDENTITY_AUTO_DISCOVERY=false
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ source "$SCRIPT_DIR/buildserver-config.sh"
25
25
26
26
# Ask for the passphrase to the signing keys
27
27
case " $( uname -s) " in
28
- Darwin* |MINGW * |MSYS_NT * )
28
+ Darwin* )
29
29
if [[ -z ${CSC_KEY_PASSWORD-} ]]; then
30
30
read -rsp " CSC_KEY_PASSWORD = " CSC_KEY_PASSWORD
31
31
echo " "
Original file line number Diff line number Diff line change @@ -134,8 +134,6 @@ const config = {
134
134
] ,
135
135
artifactName : 'MullvadVPN-${version}.${ext}' ,
136
136
publisherName : 'Mullvad VPN AB' ,
137
- signingHashAlgorithms : [ 'sha256' ] ,
138
- signDlls : true ,
139
137
extraResources : [
140
138
{ from : distAssets ( 'mullvad.exe' ) , to : '.' } ,
141
139
{ from : distAssets ( 'mullvad-problem-report.exe' ) , to : '.' } ,
You can’t perform that action at this time.
0 commit comments