Files
UnrealEngine/Engine/Source/Programs/Horde/HordeCmd/Commands/UninstallCommand.cs
2025-05-18 13:04:45 +08:00

19 lines
433 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using Microsoft.Extensions.Logging;
namespace Horde.Commands
{
[Command("uninstall", "Removes the directory containing the tool from the PATH environment variable.")]
class UinstallCommand : Command
{
/// <inheritdoc/>
public override Task<int> ExecuteAsync(ILogger logger)
{
InstallCommand.Execute(false);
return Task.FromResult(0);
}
}
}