diff --git a/main.ts b/main.ts index ef94b36..c677044 100644 --- a/main.ts +++ b/main.ts @@ -121,7 +121,7 @@ function errorMessage(e: unknown): string { async function gitExec(repoPath: string, args: string): Promise { const { stdout } = await execAsync(`git -C "${repoPath}" ${args}`); - return stdout.trim(); + return stdout.trimEnd(); } function parseChangedFiles(porcelain: string): ChangedFile[] { diff --git a/manifest.json b/manifest.json index 06e9f3d..3720019 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "github-repo-tools", "name": "GitHub Repo Tools", - "version": "1.0.1", + "version": "1.0.2", "minAppVersion": "1.7.2", "description": "Monitor a GitHub repo — staleness alerts, PR dashboard, and activity notifications.", "author": "Kyle Whittle", diff --git a/package.json b/package.json index 82daa68..91f84b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-github-tools", - "version": "1.0.1", + "version": "1.0.2", "description": "GitHub wiki repo monitor for Obsidian", "main": "main.js", "scripts": {