Skip to content

Commit

Permalink
Fix copying deb files to output
Browse files Browse the repository at this point in the history
  • Loading branch information
nmburgan committed Jan 16, 2025
1 parent 2e10513 commit 990b367
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace :pl do
stdout, stderr, exitstatus = Pkg::Util::Execution.capture3(%(bash controller.sh debian #{platform} #{staging_path}))
Pkg::Util::Execution.success?(exitstatus) or raise "Error running packaging: #{stdout}\n#{stderr}"
puts "#{stdout}\n#{stderr}"
FileUtils.cp(Dir.glob("*.deb"), "#{pkg_path}/#{platform_path}")
FileUtils.cp(Dir.glob("*#{platform}*.deb"), "#{pkg_path}/#{platform_path}")
end
FileUtils.cp_r(pkg_path, nested_output)
FileUtils.rm_r(staging_path)
Expand Down

0 comments on commit 990b367

Please sign in to comment.