Make sure the uploader uses the Ubuntu 22.04 path

- The license uploader needs to look for the Ubuntu 22.04 package in the
  jammy directory, not the bionic directory.

Signed-off-by: Robert Marshall <rmarshall@gitlab.com>
This commit is contained in:
Robert Marshall 2024-05-06 06:02:49 -04:00
parent 7770a9bd76
commit 315d323ed4
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ module License
#
dest_dir = File.join(@licenses_path, @edition, @current_minor_version)
FileUtils.mkdir_p(dest_dir)
FileUtils.cp("pkg/ubuntu-bionic/#{@edition}_#{@current_version}.license-status.json", "#{dest_dir}/#{@current_version}.json")
FileUtils.cp("pkg/ubuntu-jammy/#{@edition}_#{@current_version}.license-status.json", "#{dest_dir}/#{@current_version}.json")
end
def load_data