Skip to content

Commit 37c95ef

Browse files
authored
Surround variable format with quotes for shell agnosticism (#474)
1 parent 9296ecd commit 37c95ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dap-java.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
(defvar dap-java--var-format (if (string= system-type "windows-nt")
4040
"%%%s%%"
41-
"$%s"))
41+
"\"$%s\""))
4242

4343
;; Set to non-nil to use TestNG instead of the default JUnit
4444
(defvar dap-java-use-testng nil)

0 commit comments

Comments
 (0)