Skip to content

Commit

Permalink
Update _main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz authored Oct 14, 2024
1 parent ed2c9bf commit 83f4b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2gg/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def osrm_convert(config, resource, logger, build_lua_from_cost_config = True):

# Définition des commandes shell à exécuter
mkdir_args = ["mkdir", "-p", cost_dir]
copy_args = ["cp", ".".join(osm_file.split(".")[:-1]) + extension, tmp_osm_file]
copy_args = ["ln", "-s", ".".join(osm_file.split(".")[:-1]) + extension, tmp_osm_file]
osrm_extract_args = ["osrm-extract", tmp_osm_file, "-p", lua_file, "-t", cpu_count]
osrm_contract_args = ["osrm-contract", osrm_file, "-t", cpu_count]
rm_args = ["rm", tmp_osm_file]
Expand Down

0 comments on commit 83f4b70

Please sign in to comment.