Fix clean worktree validation

This commit is contained in:
2026-07-25 07:27:10 +00:00
parent 828dceae13
commit 838ef16208
5 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -768,9 +768,9 @@ export const adminRouter = router({
}
}
let resolvedCommitSha: string | null = null;
const gitRef = input.install.gitRef?.trim();
if (gitRef) {
let resolvedCommitSha: string;
try {
resolvedCommitSha = await resolveGitCommitSha(gitRef);
} catch (error) {