Skip to content

Commit

Permalink
Merge pull request #98 from hboomsma/patch-1
Browse files Browse the repository at this point in the history
fix: set delimiter to \x1E (record separator )
  • Loading branch information
domharrington authored Jun 17, 2024
2 parents 6612fc8 + 34c25f9 commit 881b5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import createDebugger from "debug";
const debug = createDebugger("gitlog");
const execFilePromise = promisify(execFile);

const delimiter = "\t";
const delimiter = "\x1E";
const fieldMap = {
hash: "%H",
abbrevHash: "%h",
Expand Down

0 comments on commit 881b5a4

Please sign in to comment.