From 04a274ba3db83cb57439dc2d6b2066d80d3e3f92 Mon Sep 17 00:00:00 2001 From: Zsolt Ero Date: Thu, 18 Sep 2025 01:47:22 +0200 Subject: [PATCH] work --- ssh_lib/planetiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh_lib/planetiler.py b/ssh_lib/planetiler.py index d1c88ac..d229239 100644 --- a/ssh_lib/planetiler.py +++ b/ssh_lib/planetiler.py @@ -2,7 +2,7 @@ from ssh_lib import PLANETILER_BIN, PLANETILER_SRC from ssh_lib.utils import apt_get_install, apt_get_update, exists, sudo_cmd -PLANETILER_COMMIT = 'cc769c4f' +PLANETILER_COMMIT = '33b22c516e21cfbce6168ecba1c74486dc95d589' PLANETILER_PATH = f'{PLANETILER_BIN}/planetiler.jar' @@ -25,7 +25,7 @@ def install_planetiler(c): sudo_cmd(c, f'cd {PLANETILER_SRC} && git checkout {PLANETILER_COMMIT}') sudo_cmd(c, f'cd {PLANETILER_SRC} && git submodule update --init --recursive') - sudo_cmd(c, f'cd {PLANETILER_SRC} && ./mvnw clean test package > {PLANETILER_SRC}/_build.log') + sudo_cmd(c, f'cd {PLANETILER_SRC} && ./mvnw clean test package') c.sudo( f'mv {PLANETILER_SRC}/planetiler-dist/target/planetiler-dist-*-SNAPSHOT-with-deps.jar {PLANETILER_PATH}',