Skip to content

Commit

Permalink
allows filepaths with spaces to be deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
RaynorChavez committed Apr 29, 2024
1 parent 6e40f6c commit 704ac3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/vespa_local/vespa_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 704ac3b

Please sign in to comment.