aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ruleparser.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/ruleparser.cpp b/src/ruleparser.cpp
index ea67865..f116ce4 100644
--- a/src/ruleparser.cpp
+++ b/src/ruleparser.cpp
@@ -77,14 +77,19 @@ void Rules::load()
branch.branchFrom = repoBranchLine.cap(1);
repo.branches += branch;
+ continue;
}
} else if (state == ReadingMatch) {
- if (matchRepoLine.exactMatch(line))
+ if (matchRepoLine.exactMatch(line)) {
match.repository = matchRepoLine.cap(0);
- else if (matchBranchLine.exactMatch(line))
+ continue;
+ } else if (matchBranchLine.exactMatch(line)) {
match.branch = matchBranchLine.cap(0);
- else if (matchPathLine.exactMatch(line))
+ continue;
+ } else if (matchPathLine.exactMatch(line)) {
match.path = matchPathLine.cap(0);
+ continue;
+ }
}
bool isRepositoryRule = repoLine.exactMatch(line);