Merge pull request #194 from kiwix/fix_typos_release

Fix a small typo breaking the release build process.
This commit is contained in:
Matthieu Gautier 2018-06-18 16:32:06 +02:00 committed by GitHub
commit c3cacb387f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class Builder:
builderDefs = (tDef for tDef in target_steps() if tDef[0] != 'source')
for builderDef in builderDefs:
builder = get_target_step(builderDef)
if option('make_dist') and builderName == option('target'):
if option('make_dist') and builderDef == option('target'):
print("make dist {} ({}):".format(builder.name, builderDef[0]))
builder.make_dist()
continue