File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,7 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
228
228
file [] " libsodium-23.dll"
229
229
file [] " libsecp256k1-0.dll"
230
230
file [] " libcrypto-3-x64.dll"
231
+ file [] " libssl-3-x64.dll"
231
232
when (clusterName == Selfnode ) $ do
232
233
file [] " signing.key"
233
234
file [] " delegation.cert"
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ runCommandCC "daedalus-cardano-bridge" {
13
13
cp -f ${ cardano-address } /bin/cardano-address* .
14
14
cp -f ${ cardano-shell . haskellPackages . cardano-launcher . components . exes . cardano-launcher } /bin/* .
15
15
cp -f ${ cardano-node } /bin/cardano-node* .
16
- cp -f ${ cardano-node } /bin/libcrypto-3-x64.dll .
16
+ ${ if target == "x86_64-windows" then ''
17
+ cp -f ${ cardano-node } /bin/libcrypto-3-x64.dll .
18
+ cp -f ${ cardano-node } /bin/libssl-3-x64.dll .
19
+ '' else "" }
17
20
cp -f ${ cardano-cli } /bin/cardano-cli* .
18
21
${ lib . optionalString ( local-cluster != null ) ''
19
22
You can’t perform that action at this time.
0 commit comments