Skip to content

Commit

Permalink
Adapt gitian build script to 0.17 version
Browse files Browse the repository at this point in the history
0.17 builds on bionic, not on trusty anymore.

Signed-off-by: Cornelius Schumacher <cornelius@thirdhash.com>
  • Loading branch information
cornelius committed Apr 2, 2019
1 parent f1783d6 commit ceea2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/gitian-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def setup(args):
subprocess.check_call(['git', 'clone', 'https://github.com/devrandom/gitian-builder.git'])
if not Path(args.git_dir).is_dir():
subprocess.check_call(['git', 'clone', args.url, args.git_dir])
make_image_prog = ['bin/make-base-vm', '--suite', 'trusty', '--arch', 'amd64']
make_image_prog = ['bin/make-base-vm', '--suite', 'bionic', '--arch', 'amd64']
if args.docker:
make_image_prog += ['--docker']
elif not args.kvm:
Expand Down

0 comments on commit ceea2d5

Please sign in to comment.