-rw-r--r-- | backend/php/properties/php.properties.json | 4 | ||||
-rw-r--r-- | scripts/builder/repository.py | 10 |
2 files changed, 8 insertions, 6 deletions
diff --git a/backend/php/properties/php.properties.json b/backend/php/properties/php.properties.json index 8ce703a..dd25b09 100644 --- a/backend/php/properties/php.properties.json +++ b/backend/php/properties/php.properties.json @@ -2,3 +2,3 @@ "request.path": "index.php", - "should.pay.toll": "false" + "should.pay.toll": "false", @@ -8,2 +8,2 @@ -}
\ No newline at end of file +} diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py index 9da98a2..f8528c2 100644 --- a/scripts/builder/repository.py +++ b/scripts/builder/repository.py @@ -6,3 +6,3 @@ def repositoryWithPath (path): try: - from dulwich.repo import Repo + from git import Repo @@ -10,3 +10,5 @@ def repositoryWithPath (path): result = GitRepository(repo, path) - except: + except ImportError: + print "Failed to import git, please install http://gitorious.org/git-python" +# except: from mercurial import ui, hg @@ -52,4 +54,4 @@ class GitRepository(Repository): def revision (self): - return self.repository.refs['HEAD'] - + return self.repository.head.commit.hexsha + |