]> andersk Git - svn-all-fast-export.git/blobdiff - src/ruleparser.cpp
Support for pathless rules
[svn-all-fast-export.git] / src / ruleparser.cpp
index 6d3e4174793feac6eb0b985f983398f5d2064314..da05749e66fdb47e18867aedbcb0ea33cc93e725 100644 (file)
@@ -53,7 +53,6 @@ void Rules::load()
     QRegExp matchLine("match\\s+(.*)", Qt::CaseInsensitive);
     QRegExp matchRepoLine("repository\\s+(\\S+)", Qt::CaseInsensitive);
     QRegExp matchBranchLine("branch\\s+(\\S+)", Qt::CaseInsensitive);
-    QRegExp matchPathLine("path\\s+(.*)", Qt::CaseInsensitive);
     QRegExp matchRevLine("(min|max) revision (\\d+)", Qt::CaseInsensitive);
 
     QTextStream s(&file);
@@ -93,9 +92,6 @@ void Rules::load()
             } else if (matchBranchLine.exactMatch(line)) {
                 match.branch = matchBranchLine.cap(1);
                 continue;
-            } else if (matchPathLine.exactMatch(line)) {
-                match.path = matchPathLine.cap(1);
-                continue;
             } else if (matchRevLine.exactMatch(line)) {
                 if (matchRevLine.cap(1) == "min")
                     match.minRevision = matchRevLine.cap(2).toInt();
This page took 0.025543 seconds and 4 git commands to generate.