From b8a3ae755221e27281e62c206d507ab22ee725e6 Mon Sep 17 00:00:00 2001 From: Zsolt Ero Date: Tue, 2 Jan 2024 20:08:11 +0100 Subject: [PATCH] add sync --- scripts/http_host/download_tiles.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/http_host/download_tiles.py b/scripts/http_host/download_tiles.py index 188d62a..f072886 100755 --- a/scripts/http_host/download_tiles.py +++ b/scripts/http_host/download_tiles.py @@ -57,12 +57,17 @@ def cli(area: str, version: str, list_versions: bool, runs_dir: Path, run_mounte if changed and run_mounter: print('running mounter.py') - subprocess.run( [sys.executable, Path(__file__).parent / 'mounter.py'], check=True, ) + print('running nginx_sync.py') + subprocess.run( + [sys.executable, Path(__file__).parent / 'nginx_sync' / 'nginx_sync.py'], + check=True, + ) + print('\n\n\n')