We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 825950a + 0378ea3 commit c346a65Copy full SHA for c346a65
1 file changed
sidecar/src/figwheel_sidecar/components/figwheel_server.clj
@@ -32,7 +32,8 @@
32
(when (not (nil? file-column))
33
(str ":" file-column))))
34
true (conj file-name))
35
- [open-file-command file-name file-line file-column])))
+ ;; must pass arguments to clojure.java.shell/sh as strings, not numeric values
36
+ [open-file-command file-name (str file-line) (str file-column)])))
37
38
(defn read-msg [data]
39
(try
0 commit comments