Revision: 76454
          http://sourceforge.net/p/brlcad/code/76454
Author:   starseeker
Date:     2020-07-23 22:01:22 +0000 (Thu, 23 Jul 2020)
Log Message:
-----------
ignore repowork for license check

Modified Paths:
--------------
    brlcad/trunk/regress/licenses/licenses_check.cpp

Modified: brlcad/trunk/regress/licenses/licenses_check.cpp
===================================================================
--- brlcad/trunk/regress/licenses/licenses_check.cpp    2020-07-23 21:38:36 UTC 
(rev 76453)
+++ brlcad/trunk/regress/licenses/licenses_check.cpp    2020-07-23 22:01:22 UTC 
(rev 76454)
@@ -149,6 +149,7 @@
     std::regex t_regex(".*[\\/]misc/tools[\\/].*");
     std::regex c_regex(".*[\\/]misc/CMake[\\/].*");
     std::regex r_regex(".*[\\/]misc/repoconv[\\/].*");
+    std::regex rw_regex(".*[\\/]misc/repowork[\\/].*");
     std::regex d_regex(".*[\\/]doc[\\/].*");
     std::regex l_regex(".*[\\/]licenses_check.cpp");
     std::regex srcfile_regex(".*[.](c|cpp|cxx|h|hpp|hxx|tcl)*$");
@@ -217,7 +218,8 @@
     while (std::getline(src_file_stream, sfile)) {
        if (std::regex_match(sfile, o_regex) || std::regex_match(sfile, t_regex)
                || std::regex_match(sfile, r_regex) || std::regex_match(sfile, 
c_regex)
-                || std::regex_match(sfile, d_regex) ||  
std::regex_match(sfile, l_regex)) {
+                || std::regex_match(sfile, d_regex) ||  
std::regex_match(sfile, l_regex)
+                || std::regex_match(sfile, rw_regex)) {
            continue;
        }
        if (!std::regex_match(std::string(sfile), srcfile_regex)) {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to