diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-03-05 17:32:36 +0000 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-03-05 17:32:36 +0000 |
| commit | a90ef5f5d9b047da087cf925ae6d5e6de3b18b32 (patch) | |
| tree | d1ab2adc6127ef2b9607ee3f9dd882f0fbb85724 | |
| parent | e729c9b374b60123da6ace55a60e3376ce336eca (diff) | |
Fix powershell script.
| -rw-r--r-- | Private/NewBoot/Source/download-edk.ps1 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Private/NewBoot/Source/download-edk.ps1 b/Private/NewBoot/Source/download-edk.ps1 index d19432a6..744d2c1d 100644 --- a/Private/NewBoot/Source/download-edk.ps1 +++ b/Private/NewBoot/Source/download-edk.ps1 @@ -1,2 +1,4 @@ $client = new-object System.Net.WebClient -$client.DownloadFile("https://retrage.github.io/edk2-nightly/bin/DEBUGX64_OVMF.fd","C:\micro-kernel-Amllx-trunk-patch-989e\Private\NewBoot\Source\OVMF.fd")
\ No newline at end of file +$output = "$PSScriptRoot\OVMF.fd" + +$client.DownloadFile("https://retrage.github.io/edk2-nightly/bin/DEBUGX64_OVMF.fd", $output)
\ No newline at end of file |
