We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0ed55 commit ee41f49Copy full SHA for ee41f49
src/svnRepository.ts
@@ -186,7 +186,7 @@ export class Repository {
186
let target: string = this.removeAbsolutePath(filePath);
187
if (revision) {
188
args.push("-r", revision);
189
- if (["BASE", "COMMITTED", "PREV"].includes(revision.toUpperCase())) {
+ if (!["BASE", "COMMITTED", "PREV"].includes(revision.toUpperCase())) {
190
const info = await this.getInfo();
191
target = info.url + "/" + target.replace(/\\/g, "/");
192
// TODO move to SvnRI
0 commit comments