Fix paths (forgot to stage the changes in previous commit :P)
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Danny Bessems 2021-06-24 13:25:30 +02:00
parent 567e7e64f9
commit c262c55e06

View File

@ -200,6 +200,7 @@ build {
provisioner "powershell" { provisioner "powershell" {
scripts = [ scripts = [
"scripts/Install-Prerequisites.ps1",
"scripts/Install-WinGet.ps1" "scripts/Install-WinGet.ps1"
] ]
} }
@ -241,13 +242,13 @@ build {
provisioner "file" { provisioner "file" {
only = ["vsphere-iso.srv2019-virtual"] only = ["vsphere-iso.srv2019-virtual"]
destination = "C:\\Payload\\" destination = "C:\\Payload\\"
source = "scripts/Server2019/payload/" source = "scripts/payload/"
} }
provisioner "powershell" { provisioner "powershell" {
only = ["vsphere-iso.srv2019-virtual"] only = ["vsphere-iso.srv2019-virtual"]
scripts = [ scripts = [
"scripts/Server2019/Register-ScheduledTask.ps1" "scripts/Register-ScheduledTask.ps1"
] ]
} }