Revision: 73141
          http://sourceforge.net/p/brlcad/code/73141
Author:   starseeker
Date:     2019-05-23 01:57:45 +0000 (Thu, 23 May 2019)
Log Message:
-----------
tweaks

Modified Paths:
--------------
    brlcad/trunk/misc/repoconv/svnfexport/svnfexport_git.cxx

Modified: brlcad/trunk/misc/repoconv/svnfexport/svnfexport_git.cxx
===================================================================
--- brlcad/trunk/misc/repoconv/svnfexport/svnfexport_git.cxx    2019-05-23 
01:17:40 UTC (rev 73140)
+++ brlcad/trunk/misc/repoconv/svnfexport/svnfexport_git.cxx    2019-05-23 
01:57:45 UTC (rev 73141)
@@ -753,7 +753,7 @@
     std::string cfi_file = std::string("custom/") + 
std::to_string(rev.revision_number) + std::string("-mvonly.fi");
 
     // Skip if we already have a custom file
-    if (!stat(cfi_file.c_str(), &buffer)) {
+    if (file_exists(cfi_file.c_str())) {
        return;
     }
 
@@ -1089,8 +1089,6 @@
     apply_fi_file(commit_fi_file);
     apply_fi_file(nfi_file);
     remove(nfi_file.c_str());
-
-    get_rev_sha1s(rev.revision_number);
 }
 
 
@@ -1158,6 +1156,10 @@
 
 
     std::cout << "Processing revision " << rev.revision_number << "\n";
+
+    if (rev.move_edit) {
+       std::cout << "Move edit " << rev.merged_from << "\n";
+    }
 #if 0
     if (rev.merged_from.length()) {
        std::cout << "Note: merged from " << rev.merged_from << "\n";

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