Add extra login to do "hg update" after "hg pull" if not mirroring - to match clone_BOM.pl
authorWilliam Roberts <williamr@symbian.org>
Wed, 26 Aug 2009 17:46:12 +0100
changeset 40 0c8b7325c98e
parent 39 674034f6180c
child 41 ac3a70c9f81c
Add extra login to do "hg update" after "hg pull" if not mirroring - to match clone_BOM.pl
clone_packages/clone_all_packages.pl
--- a/clone_packages/clone_all_packages.pl	Wed Aug 26 17:34:08 2009 +0100
+++ b/clone_packages/clone_all_packages.pl	Wed Aug 26 17:46:12 2009 +0100
@@ -240,6 +240,10 @@
     
     print "Updating $destdir from $package...\n";
     $ret = do_system("hg", "pull", @pull_options, "-R", $path, $repo_url, @rev_options);
+    if ($ret == 0 && ! $mirror)
+      {
+      $ret = do_system("hg", "update", "-R", $path, @rev_options)
+      }
     }
   else
     {