Skip to content

Commit

Permalink
More PR reaction
Browse files Browse the repository at this point in the history
  • Loading branch information
juliobbv committed Oct 24, 2019
1 parent 5664db8 commit f3855be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/Runner.Worker/ActionCommandManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ public void ProcessCommand(IExecutionContext context, string line, ActionCommand

context.EnvironmentVariables[envName] = command.Data;
context.SetEnvContext(envName, command.Data);
context.Output(line);
context.Debug($"{envName}='{command.Data}'");
}

Expand All @@ -223,7 +222,6 @@ public void ProcessCommand(IExecutionContext context, string line, ActionCommand
}

context.SetOutput(outputName, command.Data, out var reference);
context.Output(line);
context.Debug($"{reference}='{command.Data}'");
}

Expand Down
2 changes: 1 addition & 1 deletion src/Runner.Worker/ExecutionContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public interface IExecutionContext : IRunnerService
// Only job level ExecutionContext has PostJobSteps
Stack<IStep> PostJobSteps { get; }

Boolean EchoOnActionCommand { get; set; }
bool EchoOnActionCommand { get; set; }

// Initialize
void InitializeJob(Pipelines.AgentJobRequestMessage message, CancellationToken token);
Expand Down

0 comments on commit f3855be

Please sign in to comment.