mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-15 23:41:45 +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[],
|
generalArgs:string[],
|
||||||
command: string,
|
command: string,
|
||||||
): string[] => {
|
): string[] => {
|
||||||
return [filename, ...generalArgs, command];
|
const fullCommand = [filename, ...generalArgs, command];
|
||||||
|
core.info(`==> Running command '${fullCommand.join(' ')}'`);
|
||||||
|
return fullCommand;
|
||||||
};
|
};
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue