From 7db191ee719ee15b7ef57f475c039761dbe4d4eb Mon Sep 17 00:00:00 2001 From: Ferenc Hammerl Date: Wed, 26 May 2021 15:23:36 +0200 Subject: [PATCH] Remove Runner.Listener from error message --- src/Runner.Listener/Configuration/ConfigurationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Listener/Configuration/ConfigurationManager.cs b/src/Runner.Listener/Configuration/ConfigurationManager.cs index 6226a4d08..5b9e8985c 100644 --- a/src/Runner.Listener/Configuration/ConfigurationManager.cs +++ b/src/Runner.Listener/Configuration/ConfigurationManager.cs @@ -53,7 +53,7 @@ namespace GitHub.Runner.Listener.Configuration Trace.Info(nameof(LoadSettings)); if (!IsConfigured()) { - throw new InvalidOperationException("Not configured. Run config.sh or invoke Runner.Listener with the argument [config]"); + throw new InvalidOperationException("Not configured. Run config.(sh/cmd) to generate configuration."); } RunnerSettings settings = _store.GetSettings();