Skip to content

Commit

Permalink
Fix for issue issue bitwalker#745
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-heath committed Oct 25, 2022
1 parent 6700edb commit a265022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/distillery/releases/assembler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ defmodule Distillery.Releases.Assembler do
# no work around for this
old_cwd = File.cwd!()
File.cd!(output_dir)
:ok = :release_handler.create_RELEASES('./', 'releases', '#{relfile}', [])
:ok = :release_handler.create_RELEASES(File.cwd!(), Path.join([File.cwd!(), 'releases']), '#{relfile}', [])
File.cd!(old_cwd)
:ok
end
Expand Down

0 comments on commit a265022

Please sign in to comment.