Skip to content

Commit

Permalink
Updated windows postfix to remove -win32
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicletz committed Sep 23, 2024
1 parent 3f00c4c commit 90f8112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/package.ex
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ defmodule Desktop.Deployment.Package do
File.write!(Path.join(build_root, "app.nsi"), content)
cmd!("makensis", ["-NOCD", "-DVERSION=#{vsn}", Path.join(build_root, "app.nsi")])
:file.set_cwd(cur)
outfile = "#{pkg.name}-#{vsn}-win32.exe"
outfile = "#{pkg.name}-#{vsn}.exe"

if signfun != nil do
path = Path.join([build_root, outfile])
Expand Down
2 changes: 1 addition & 1 deletion rel/win32/app.nsi.eex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Var STARTMENU_FOLDER
Var MYTEMP

; General
OutFile "../../<%= @package.name %>-${VERSION}-win32.exe"
OutFile "../../<%= @package.name %>-${VERSION}.exe"
SetCompressor /SOLID lzma
SetCompressorDictSize 64
SetDatablockOptimize ON
Expand Down

0 comments on commit 90f8112

Please sign in to comment.