Skip to content

Commit

Permalink
fix: git shortlog command fails on windows with single quotes in para…
Browse files Browse the repository at this point in the history
…meter values gf-612 (#613)
  • Loading branch information
ArtemZag authored Oct 16, 2024
1 parent 42e608e commit ccb001e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ class BaseGITService implements GITService {
};

public getShortLogCommand = (): string => {
return "git shortlog -sne --all --no-merges --group='%cs %cn <%ce>' --since='1 week ago'";
// eslint-disable-next-line quotes
return 'git shortlog -sne --all --no-merges --group="%cs %cn <%ce>" --since="1 week ago"';
};
}

Expand Down

0 comments on commit ccb001e

Please sign in to comment.