Skip to content

Commit 827c1da

Browse files
committedDec 4, 2016
fix quote problem
1 parent 8df1fe6 commit 827c1da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎jscomp/bin/bsb.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7347,7 +7347,7 @@ let create_bs_config () =
73477347
()
73487348
let watch () =
73497349
Unix.execvp "node"
7350-
[| "node" ; Bsb_build_util.get_bsc_dir cwd // "bsb_watcher.js" |]
7350+
[| "node" ; Filename.quote (Bsb_build_util.get_bsc_dir cwd // "bsb_watcher.js" )|]
73517351

73527352

73537353
let annoymous filename =

‎jscomp/bsb/bsb_main.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ let create_bs_config () =
142142
()
143143
let watch () =
144144
Unix.execvp "node"
145-
[| "node" ; Bsb_build_util.get_bsc_dir cwd // "bsb_watcher.js" |]
145+
[| "node" ; Filename.quote (Bsb_build_util.get_bsc_dir cwd // "bsb_watcher.js" )|]
146146

147147

148148
let annoymous filename =

0 commit comments

Comments
 (0)