wabbajack/Wabbajack.CLI/Verbs/UpdateNexusCache.cs

17 lines
467 B
C#
Raw Normal View History

2020-04-06 17:14:46 +00:00
using System.Threading.Tasks;
using CommandLine;
using Wabbajack.Lib.FileUploader;
namespace Wabbajack.CLI.Verbs
{
[Verb("update-nexus-cache", HelpText = "Tell the build server to update the Nexus cache (requires Author API key)")]
public class UpdateNexusCache : AVerb
{
2020-04-06 17:14:46 +00:00
protected override async Task<ExitCode> Run()
{
2020-02-24 16:50:58 +00:00
CLIUtils.Log($"Job ID: {await AuthorAPI.UpdateNexusCache()}");
return 0;
}
}
}