[Ubuntu] Fix software report download directory (#8814)

This commit is contained in:
Shamil Mubarakshin
2023-11-15 22:21:38 +01:00
committed by GitHub
parent f2a3cad69a
commit f78a7baa80
2 changed files with 4 additions and 4 deletions

View File

@@ -350,13 +350,13 @@
{ {
"type": "file", "type": "file",
"source": "{{user `image_folder`}}/software-report.md", "source": "{{user `image_folder`}}/software-report.md",
"destination": "{{template_dir}}/Ubuntu2004-Readme.md", "destination": "{{template_dir}}/../Ubuntu2004-Readme.md",
"direction": "download" "direction": "download"
}, },
{ {
"type": "file", "type": "file",
"source": "{{user `image_folder`}}/software-report.json", "source": "{{user `image_folder`}}/software-report.json",
"destination": "{{template_dir}}/software-report.json", "destination": "{{template_dir}}/../software-report.json",
"direction": "download" "direction": "download"
}, },
{ {

View File

@@ -390,13 +390,13 @@ build {
} }
provisioner "file" { provisioner "file" {
destination = "${path.root}/Ubuntu2204-Readme.md" destination = "${path.root}/../Ubuntu2204-Readme.md"
direction = "download" direction = "download"
source = "${var.image_folder}/software-report.md" source = "${var.image_folder}/software-report.md"
} }
provisioner "file" { provisioner "file" {
destination = "${path.root}/software-report.json" destination = "${path.root}/../software-report.json"
direction = "download" direction = "download"
source = "${var.image_folder}/software-report.json" source = "${var.image_folder}/software-report.json"
} }