We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 592c113 commit 0ca101bCopy full SHA for 0ca101b
etc/scripts/release.hs
@@ -293,7 +293,9 @@ rules global@Global{..} args = do
293
binaryPkgTarGzFileName = binaryName <.> tarGzExt
294
-- Adding '-bin' to name to work around https://github.com/commercialhaskell/stack/issues/4961
295
binaryExeFileName = binaryName ++ "-bin" <.> exe
296
- binaryInstallerNSIFileName = binaryName ++ "-installer" <.> nsiExt
+ -- Prefix with 'installer-' so it doesn't get included in release artifacts
297
+ -- (due to NSIS limitation, needs to be in same directory as executable)
298
+ binaryInstallerNSIFileName = "installer-" ++ binaryName <.> nsiExt
299
binaryInstallerFileName = binaryName ++ "-installer" <.> exe
300
binaryName =
301
concat
0 commit comments