Skip to content

Commit 604610d

Browse files
committed
Fix LLDB breakpoint option
1 parent 3751335 commit 604610d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swift-mode-repl.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ STRING is passed to the command."
646646
(swift-mode:join-path project-directory ".build" "debug" package-name)))
647647
nil t)
648648
(swift-mode:enqueue-repl-commands
649-
"breakpoint set --one-shot --file main.swift --name main"
649+
"breakpoint set --one-shot true --file main.swift --name main"
650650
"run"
651651
"repl")))
652652

@@ -854,7 +854,7 @@ the value of `swift-mode:ios-project-scheme' is used."
854854
"platform select ios-simulator"
855855
(concat "platform connect " device-identifier)
856856
(concat "process attach --pid " (number-to-string process-identifier))
857-
"breakpoint set --one-shot --name UIApplicationMain"
857+
"breakpoint set --one-shot true --name UIApplicationMain"
858858
"cont"
859859
(cons
860860
(lambda (_string)

0 commit comments

Comments
 (0)