Skip to content

Commit

Permalink
fix: add forgotten git-svn provider to vcsKind
Browse files Browse the repository at this point in the history
  • Loading branch information
croesnick committed Nov 30, 2021
1 parent 0ddde62 commit 86c3ae1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vcs-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ export function vcsKind(): VcsKind {
return VcsKind.git;
case 'svn':
return VcsKind.svn;
case 'git-svn':
return VcsKind.gitsvn;
default:
throw new Error(`Unsupported VCS provider: ${provider}`);
}
Expand Down

0 comments on commit 86c3ae1

Please sign in to comment.