replace git:// with https://. Closes #178
This commit is contained in:
parent
501dcb9161
commit
93d35a951e
3 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ Usage example
|
|||
#. Install buildozer::
|
||||
|
||||
# latest dev
|
||||
git clone git://github.com/kivy/buildozer
|
||||
git clone https://github.com/kivy/buildozer
|
||||
cd buildozer
|
||||
sudo python2.7 setup.py install
|
||||
|
||||
|
|
|
@ -407,7 +407,7 @@ class TargetAndroid(Target):
|
|||
cmd('ln -sf {} ./python-for-android'.format(system_p4a_dir),
|
||||
cwd = self.buildozer.platform_dir)
|
||||
else:
|
||||
cmd('git clone git://github.com/kivy/python-for-android',
|
||||
cmd('git clone https://github.com/kivy/python-for-android',
|
||||
cwd=self.buildozer.platform_dir)
|
||||
elif self.platform_update:
|
||||
cmd('git clean -dxf', cwd=pa_dir)
|
||||
|
|
|
@ -93,7 +93,7 @@ class TargetIos(Target):
|
|||
cmd = self.buildozer.cmd
|
||||
self.ios_dir = ios_dir = join(self.buildozer.platform_dir, 'kivy-ios')
|
||||
if not self.buildozer.file_exists(ios_dir):
|
||||
cmd('git clone git://github.com/kivy/kivy-ios',
|
||||
cmd('git clone https://github.com/kivy/kivy-ios',
|
||||
cwd=self.buildozer.platform_dir)
|
||||
elif self.platform_update:
|
||||
cmd('git clean -dxf', cwd=ios_dir)
|
||||
|
|
Loading…
Reference in a new issue