author | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2013-04-17 15:42:20 (UTC) |
---|---|---|
committer | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2013-04-17 15:42:20 (UTC) |
commit | 4ce8041b11afc7f02c678565e0e96e59a5a557b6 (patch) (unidiff) | |
tree | 77825931432896aa280ca543d48cda435313039b /scripts | |
parent | 07d0357beef5d9328a2dd8d07ad7b39c87ac55e4 (diff) | |
parent | 6d037cc7a40708c95860e9311236dc76a40d0764 (diff) | |
download | clipperz-4ce8041b11afc7f02c678565e0e96e59a5a557b6.zip clipperz-4ce8041b11afc7f02c678565e0e96e59a5a557b6.tar.gz clipperz-4ce8041b11afc7f02c678565e0e96e59a5a557b6.tar.bz2 |
Merge pull request #47 from jokajak/gitCheck
add friendly error message when the git python module can't be found
-rw-r--r-- | scripts/builder/repository.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py index 7a44e47..2d4a12b 100644 --- a/scripts/builder/repository.py +++ b/scripts/builder/repository.py | |||
@@ -14,9 +14,10 @@ def repositoryWithPath (path): | |||
14 | repo = Repo(path) | 14 | repo = Repo(path) |
15 | result = GitRepository(repo, path) | 15 | result = GitRepository(repo, path) |
16 | except ImportError, exception: | 16 | except ImportError, exception: |
17 | print "Failed to import git, please install http://gitorious.org/git-python" | 17 | print "Failed to import git, please install http://gitorious.org/git-python" |
18 | raise exception | 18 | print "Use sudo apt-get install python-git for Ubuntu/Debian" |
19 | print "Use sudo yum install GitPython for Fedora/RHEL/CentOS" | ||
19 | except: | 20 | except: |
20 | result = SnapshotRepository('', path) | 21 | result = SnapshotRepository('', path) |
21 | 22 | ||
22 | 23 | ||