tmux-agent-monitor 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -635,6 +635,7 @@ const fetchCommitFile = async (repoRoot, hash, file, options) => {
|
|
|
635
635
|
patch = await runGit$1(repoRoot, [
|
|
636
636
|
"show",
|
|
637
637
|
"--find-renames",
|
|
638
|
+
"--format=",
|
|
638
639
|
hash,
|
|
639
640
|
"--",
|
|
640
641
|
file.path
|
|
@@ -642,6 +643,7 @@ const fetchCommitFile = async (repoRoot, hash, file, options) => {
|
|
|
642
643
|
if (!patch && file.renamedFrom) patch = await runGit$1(repoRoot, [
|
|
643
644
|
"show",
|
|
644
645
|
"--find-renames",
|
|
646
|
+
"--format=",
|
|
645
647
|
hash,
|
|
646
648
|
"--",
|
|
647
649
|
file.renamedFrom
|