Skip to content

Commit c0e369e

Browse files
authored
Merge pull request #3141 from input-output-hk/fix/ddw-1226-windows-installer-lockfile
[DDW-1226] Make Windows installer check if previous Daedalus is running
2 parents 23976ef + e5d8947 commit c0e369e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Fixes
66

7+
- Make Windows installer check if previous Daedalus is running ([PR 3141](https://github.com/input-output-hk/daedalus/pull/3141))
78
- Fixed out-of-memory errors on https://ci.iog.io ([PR 3145](https://github.com/input-output-hk/daedalus/pull/3145))
89

910
## 5.3.0

installers/common/WindowsInstaller.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
201201
Development.NSIS.& ")..."
202202
)
203203
lockfileDeleted @= true
204-
onError (delete [] (str $ "$APPDATA\\$InstallDir\\" ++ T.unpack uglyName ++ "_lockfile")) $ do
204+
onError (delete [] (fromString $ "$APPDATA\\$InstallDir\\" ++ T.unpack uglyName ++ "_lockfile")) $ do
205205
lockfileDeleted @= false
206206
iff_ (not_ lockfileDeleted) $ do
207207
sleep 1000 -- milliseconds

0 commit comments

Comments
 (0)