Skip to content

Commit

Permalink
Surround variable format with quotes for shell agnosticism (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshTRN authored May 1, 2024
1 parent 9296ecd commit 37c95ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dap-java.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 37c95ef

Please sign in to comment.