author | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2012-03-17 14:40:38 (UTC) |
---|---|---|
committer | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2012-03-17 14:40:38 (UTC) |
commit | e61e994abb9738d98447b203b9908793da6f560a (patch) (unidiff) | |
tree | c12d695420bb6281708b367d52970eac5615ef1c | |
parent | 65a7a7be3feb846d6b1062a0b858a7660e8f99fa (diff) | |
parent | 24f7bfcbe317fe9f0d7de7cef3cb3b3b341c95a5 (diff) | |
download | clipperz-e61e994abb9738d98447b203b9908793da6f560a.zip clipperz-e61e994abb9738d98447b203b9908793da6f560a.tar.gz clipperz-e61e994abb9738d98447b203b9908793da6f560a.tar.bz2 |
Merge branch 'buildScript' of https://github.com/jokajak/password-manager
Conflicts:
scripts/builder/repository.py
Signed-off-by: Giulio Cesare Solaroli <giulio.cesare@clipperz.com>
-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 | |||
@@ -1,9 +1,9 @@ | |||
1 | { | 1 | { |
2 | "request.path": "index.php", | 2 | "request.path": "index.php", |
3 | "should.pay.toll": "false" | 3 | "should.pay.toll": "false", |
4 | 4 | ||
5 | "development.settings": { | 5 | "development.settings": { |
6 | "url": "http://localhost/php/clipperz" | 6 | "url": "http://localhost/php/clipperz" |
7 | } | 7 | } |
8 | 8 | ||
9 | } \ No newline at end of file | 9 | } |
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 | |||
@@ -4,11 +4,13 @@ | |||
4 | 4 | ||
5 | def repositoryWithPath (path): | 5 | def repositoryWithPath (path): |
6 | try: | 6 | try: |
7 | from dulwich.repo import Repo | 7 | from git import Repo |
8 | 8 | ||
9 | repo = Repo(path) | 9 | repo = Repo(path) |
10 | result = GitRepository(repo, path) | 10 | result = GitRepository(repo, path) |
11 | except: | 11 | except ImportError: |
12 | print "Failed to import git, please install http://gitorious.org/git-python" | ||
13 | #except: | ||
12 | from mercurial import ui, hg | 14 | from mercurial import ui, hg |
13 | 15 | ||
14 | repo = hg.repository(ui.ui(), path) | 16 | repo = hg.repository(ui.ui(), path) |
@@ -50,8 +52,8 @@ class Repository(object): | |||
50 | class GitRepository(Repository): | 52 | class GitRepository(Repository): |
51 | 53 | ||
52 | def revision (self): | 54 | def revision (self): |
53 | return self.repository.refs['HEAD'] | 55 | return self.repository.head.commit.hexsha |
54 | 56 | ||
55 | 57 | ||
56 | def areTherePendingChanges (self): | 58 | def areTherePendingChanges (self): |
57 | return self.repository.is_dirty() | 59 | return self.repository.is_dirty() |