Skip to content
This repository was archived by the owner on Jan 8, 2022. It is now read-only.

Commit 8c47954

Browse files
committed
Renamed UEFI download task
1 parent 6e2a99b commit 8c47954

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Deployer.Raspberry/Scripts/deployment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
UefiDownload "Downloaded\UEFI"
1+
DownloadUefi "Downloaded\UEFI"
22
ZipUnpack "http://ww1.microchip.com/downloads/en//softwarelibrary/obj-lan95xx-windows/lan9500-wdf-v18.12.18.0.zip" "Downloaded\Drivers\LAN95XX"
33
ZipUnpack "http://ww1.microchip.com/downloads/en//softwarelibrary/obj-lan78xx-windows/lan7800-wdf-v18.12.14.0.zip" "Downloaded\Drivers\LAN78XX"
44
ZipUnpack "https://pi64.win/wp-content/uploads/2019/02/usb-drivers.zip" "Downloaded\Drivers\USB"

Source/Deployer.Raspberry/Tasks/UefiDownload.cs renamed to Source/Deployer.Raspberry/Tasks/DownloadUefi.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
namespace Deployer.Raspberry.Tasks
1313
{
1414
[TaskDescription("Downloading UEFI")]
15-
public class UefiDownload : IDeploymentTask
15+
public class DownloadUefi : IDeploymentTask
1616
{
1717
private readonly string destination;
1818
private readonly IGitHubClient githubCient;
1919
private readonly IFileSystemOperations fileSystemOperations;
2020

21-
public UefiDownload(string destination, IGitHubClient githubCient, IFileSystemOperations fileSystemOperations)
21+
public DownloadUefi(string destination, IGitHubClient githubCient, IFileSystemOperations fileSystemOperations)
2222
{
2323
this.destination = destination;
2424
this.githubCient = githubCient;

0 commit comments

Comments
 (0)