Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion jscomp/bsb/bsb_ninja_gen.ml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ let output_installation_file cwd_lib_bs namespace files_to_install =
o suffix; o "\n" in
let bs = ".."//"bs" in
let sb = ".."//".." in
o "rule cp\n command = cp $i $out\n";
o (if Ext_sys.is_windows_or_cygwin then
"rule cp\n command = cmd.exe /C copy /Y $i $out > null\n"
else
"rule cp\n command = cp $i $out\n"
);
files_to_install
|> Queue.iter (fun ({name_sans_extension;syntax_kind; info} : Bsb_db.module_info) ->
let base = Filename.basename name_sans_extension in
Expand Down
6 changes: 5 additions & 1 deletion lib/4.06.1/bsb.ml
Original file line number Diff line number Diff line change
Expand Up @@ -13610,7 +13610,11 @@ let output_installation_file cwd_lib_bs namespace files_to_install =
o suffix; o "\n" in
let bs = ".."//"bs" in
let sb = ".."//".." in
o "rule cp\n command = cp $i $out\n";
o (if Ext_sys.is_windows_or_cygwin then
"rule cp\n command = cmd.exe /C copy /Y $i $out > null\n"
else
"rule cp\n command = cp $i $out\n"
);
files_to_install
|> Queue.iter (fun ({name_sans_extension;syntax_kind; info} : Bsb_db.module_info) ->
let base = Filename.basename name_sans_extension in
Expand Down
2 changes: 1 addition & 1 deletion ninja
Submodule ninja updated 2 files
+2 −1 .gitignore
+1 −1 src/clean.cc
Binary file modified win32/ninja.exe
Binary file not shown.