From 704ac3b4050467f3cdb54e03a211991f303c08da Mon Sep 17 00:00:00 2001 From: Raynor Chavez Date: Mon, 29 Apr 2024 13:02:51 +0800 Subject: [PATCH] allows filepaths with spaces to be deployed --- scripts/vespa_local/vespa_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vespa_local/vespa_local.py b/scripts/vespa_local/vespa_local.py index 49848e4d7..de510c129 100644 --- a/scripts/vespa_local/vespa_local.py +++ b/scripts/vespa_local/vespa_local.py @@ -24,7 +24,7 @@ def restart(args): def deploy_config(args): os.system('vespa config set target local') here = os.path.dirname(os.path.abspath(__file__)) - os.system(f'vespa deploy {here}') + os.system(f'vespa deploy "{here}"') def stop(args):