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 b9ddc91 commit a37e06dCopy full SHA for a37e06d
lib/package.ex
@@ -122,6 +122,11 @@ defmodule Desktop.Deployment.Package do
122
File.rename!(name, new_name)
123
end)
124
125
+ # Removing pdb files
126
+ for name <- wildcard(rel, "**/*.pdb") do
127
+ File.rm!(name)
128
+ end
129
+
130
cp!(toolpath("rel/win32/run.vbs"), rel_path)
131
content = eval_eex(toolpath("rel/win32/run.bat.eex"), rel, pkg)
132
File.write!(Path.join(rel_path, "run.bat"), content)
0 commit comments