From 37c95ef7e992001250d893277acfccf4af0099b4 Mon Sep 17 00:00:00 2001 From: Joshua <33141876+JoshTRN@users.noreply.github.com> Date: Wed, 1 May 2024 15:28:31 -0400 Subject: [PATCH] Surround variable format with quotes for shell agnosticism (#474) --- dap-java.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dap-java.el b/dap-java.el index f73be71..12346c9 100644 --- a/dap-java.el +++ b/dap-java.el @@ -38,7 +38,7 @@ (defvar dap-java--var-format (if (string= system-type "windows-nt") "%%%s%%" - "$%s")) + "\"$%s\"")) ;; Set to non-nil to use TestNG instead of the default JUnit (defvar dap-java-use-testng nil)