19 lines
433 B
C#
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);
|
|
}
|
|
}
|
|
}
|