remove unnecessary git cleanup logic

This commit is contained in:
David Blass
2025-11-25 16:05:40 -05:00
parent ff375b97e4
commit aba21e7583
2 changed files with 1 additions and 76 deletions
+1 -3
View File
@@ -20,7 +20,7 @@ import {
revokeInstallationToken,
setupGitHubInstallationToken,
} from "./utils/github.ts";
import { restoreGitConfig, setupGitAuth, setupGitBranch, setupGitConfig } from "./utils/setup.ts";
import { setupGitAuth, setupGitBranch, setupGitConfig } from "./utils/setup.ts";
// runtime validation using agents (needed for ArkType)
// Note: The AgentName type is defined in external.ts, this is the runtime validator
@@ -96,8 +96,6 @@ export async function main(inputs: Inputs): Promise<MainResult> {
error: errorMessage,
};
} finally {
restoreGitConfig();
if (pollInterval) {
clearInterval(pollInterval);
}