diff options
author | Adam Spiers <github@adamspiers.org> | 2016-06-15 13:52:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-15 13:52:09 +0100 |
commit | f6094450d57822a2275ad2188348f22bf775272b (patch) | |
tree | 5381ebd7193fbc26421c3859bb828505bdd03c5f | |
parent | 78ff5718f35021b1c1992395fc2faa72488b5631 (diff) | |
parent | 2cd999d217d4d651228ecec70ea1656717fa091f (diff) | |
download | git-deps-f6094450d57822a2275ad2188348f22bf775272b.tar.gz |
Merge pull request #60 from Valodim/master
add debian install guide
-rwxr-xr-x | git-deps.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-deps.py b/git-deps.py index 5fe66bc..568abfa 100755 --- a/git-deps.py +++ b/git-deps.py @@ -46,6 +46,10 @@ except ImportError: install_guide = \ "You should be able to install it with something like:\n\n" \ " sudo zypper install python-pygit2" + elif distro == 'debian': + install_guide = \ + "You should be able to install it with something like:\n\n" \ + " sudo apt-get install python-pygit2" if install_guide is None: msg += "\n\nIf you figure out a way to install it on your platform,\n" \ |