mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 20:22:46 +00:00
8 lines
254 B
Bash
Executable file
8 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# GitPython does not currently support python3 and
|
|
# may be replaced by pygit2.
|
|
# https://fedoraproject.org/wiki/User:Churchyard/python3
|
|
if [[ $(python --version 2>&1) =~ ^2 ]]; then
|
|
pip install 'GitPython >= 0.2.0' --use-mirrors --pre
|
|
fi
|