From 3e8ad0d85f5ddcedac0567a5e9897443fed40268 Mon Sep 17 00:00:00 2001 From: saibulusu Date: Thu, 16 Jan 2025 14:05:21 -0800 Subject: [PATCH] Adding git as a package installed via dnf. --- .../VirtualClient.Dependencies/CompilerInstallation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VirtualClient/VirtualClient.Dependencies/CompilerInstallation.cs b/src/VirtualClient/VirtualClient.Dependencies/CompilerInstallation.cs index 1cd955c6f..b7069a928 100644 --- a/src/VirtualClient/VirtualClient.Dependencies/CompilerInstallation.cs +++ b/src/VirtualClient/VirtualClient.Dependencies/CompilerInstallation.cs @@ -235,6 +235,7 @@ private async Task InstallGccAsync(string gccVersion, EventContext telemetryCont await this.ExecuteCommandAsync("dnf", "install kernel-headers kernel-devel -y", Environment.CurrentDirectory, telemetryContext, cancellationToken); await this.ExecuteCommandAsync("dnf", "install binutils -y", Environment.CurrentDirectory, telemetryContext, cancellationToken); await this.ExecuteCommandAsync("dnf", "install glibc-headers glibc-devel -y", Environment.CurrentDirectory, telemetryContext, cancellationToken); + await this.ExecuteCommandAsync("dnf", "install git -y", Environment.CurrentDirectory, telemetryContext, cancellationToken); await this.ExecuteCommandAsync("dnf", "install gcc gfortran -y", Environment.CurrentDirectory, telemetryContext, cancellationToken); await this.SetGccPriorityAsync(gccVersion, telemetryContext, cancellationToken);