diff mbox

[core] Fixed problem with fetching dirty HEAD with Git fetcher.

Message ID 1415794188-13481-1-git-send-email-dore@madsdore.dk
State New
Headers show

Commit Message

Mads Doré Hansen Nov. 12, 2014, 12:09 p.m. UTC
---
 lib/oelite/fetch/git.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff mbox

Patch

diff --git a/lib/oelite/fetch/git.py b/lib/oelite/fetch/git.py
index 1559d8d..52f3505 100644
--- a/lib/oelite/fetch/git.py
+++ b/lib/oelite/fetch/git.py
@@ -53,6 +53,11 @@  class GitFetcher():
             self.signature_name += ";tag=" + self.tag
         if "branch" in uri.params:
             self.branch = uri.params["branch"]
+        i = bool(self.commit) + bool(self.tag) + bool(self.branch)
+        if i == 0:
+            self.branch = "HEAD"
+            if self.is_local and not hasattr(self, 'dirty'):
+                self.dirty = True            
         if "dirty" in uri.params:
             if uri.params["dirty"] == "1":
                 if not self.is_local:
@@ -63,12 +68,7 @@  class GitFetcher():
                         self.uri, "can only fetch git dirty content from HEAD")
                 self.dirty = True
             else:
-                self.dirty = False
-        i = bool(self.commit) + bool(self.tag) + bool(self.branch)
-        if i == 0:
-            self.branch = "HEAD"
-            if self.is_local and not hasattr(self, 'dirty'):
-                self.dirty = True
+                self.dirty = False       
         elif i != 1:
             raise oelite.fetch.InvalidURI(
                 self.uri, "cannot mix commit, tag and branch parameters")