Skip to content

Commit

Permalink
fixed polyconvert option handling for osmBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Mar 26, 2024
1 parent 46c99be commit dfe8eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/osmBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def build(args=None, bindir=None):
if options.netconvert_typemap:
netconvertOpts += ["-t", options.netconvert_typemap]
netconvertOpts += options.netconvert_options.strip().split(',') + ['--osm-files']
polyconvertOpts = ([polyconvert] + options.polyconvert_options.split(',') +
polyconvertOpts = ([polyconvert] + options.polyconvert_options.strip().split(',') +
['--type-file', options.typemap, '--osm-files'])

prefix = options.oldapi_prefix
Expand Down

0 comments on commit dfe8eff

Please sign in to comment.