mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
logging out run command
This commit is contained in:
parent
b396576f86
commit
160799a99c
1 changed files with 3 additions and 1 deletions
|
|
@ -56,7 +56,9 @@ const getCommand = (
|
|||
generalArgs:string[],
|
||||
command: string,
|
||||
): string[] => {
|
||||
return [filename, ...generalArgs, command];
|
||||
const fullCommand = [filename, ...generalArgs, command];
|
||||
core.info(`==> Running command '${fullCommand.join(' ')}'`);
|
||||
return fullCommand;
|
||||
};
|
||||
|
||||
export {
|
||||
|
|
|
|||
Loading…
Reference in a new issue