Skip to content

Commit

Permalink
Gitian: fix check path and detached signatures dir name
Browse files Browse the repository at this point in the history
- previous setting checked for ion folder instead of pivx
- previous setting checked for ion detached signatures instead of
  • Loading branch information
cevap committed Jan 14, 2019
1 parent 72c3faf commit 477bb46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/gitian-build.py
Expand Up @@ -24,11 +24,11 @@ def setup():
subprocess.check_call(['sudo', 'apt-get', 'install', '-qq'] + programs)
if not os.path.isdir('gitian.sigs'):
subprocess.check_call(['git', 'clone', 'https://github.com/PIVX-Project/gitian.sigs.git'])
if not os.path.isdir('ion-detached-sigs'):
if not os.path.isdir('PIVX-detached-sigs'):
subprocess.check_call(['git', 'clone', 'https://github.com/PIVX-Project/PIVX-detached-sigs.git'])
if not os.path.isdir('gitian-builder'):
subprocess.check_call(['git', 'clone', 'https://github.com/devrandom/gitian-builder.git'])
if not os.path.isdir('ion'):
if not os.path.isdir('PIVX'):
subprocess.check_call(['git', 'clone', 'https://github.com/PIVX-Project/PIVX.git'])
os.chdir('gitian-builder')
make_image_prog = ['bin/make-base-vm', '--suite', 'bionic', '--arch', 'amd64']
Expand Down

0 comments on commit 477bb46

Please sign in to comment.