Skip to content

Commit

Permalink
Register new command
Browse files Browse the repository at this point in the history
  • Loading branch information
juliobbv committed Oct 23, 2019
1 parent 38f4154 commit 0a7cefd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions src/Runner.Common/ExtensionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public sealed class ExtensionManager : RunnerService, IExtensionManager
Add<T>(extensions, "GitHub.Runner.Worker.DebugCommandExtension, Runner.Worker");
Add<T>(extensions, "GitHub.Runner.Worker.GroupCommandExtension, Runner.Worker");
Add<T>(extensions, "GitHub.Runner.Worker.EndGroupCommandExtension, Runner.Worker");
Add<T>(extensions, "GitHub.Runner.Worker.EchoCommandExtension, Runner.Worker");
break;
default:
// This should never happen.
Expand Down
2 changes: 0 additions & 2 deletions src/Runner.Worker/ExecutionContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -712,8 +712,6 @@ public void InitializeJob(Pipelines.AgentJobRequestMessage message, Cancellation
// Initialize 'echo on action command success' property, default to false, unless Step_Debug is set
EchoOnActionCommandSuccess = Variables.Step_Debug ?? false;

//throw new Exception($"EchoOACS = {EchoOnActionCommandSuccess}");

// Verbosity (from GitHub.Step_Debug).
WriteDebug = Variables.Step_Debug ?? false;

Expand Down

0 comments on commit 0a7cefd

Please sign in to comment.