File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ let output_installation_file cwd_lib_bs namespace files_to_install =
108108 let bs = " .." // " bs" in
109109 let sb = " .." // " .." in
110110 o (if Ext_sys. is_windows_or_cygwin then
111- " rule cp\n command = cmd.exe /C copy /Y $i $out > null \n "
111+ " rule cp\n command = cmd.exe /C copy /Y $i $out >NUL \n "
112112 else
113113 " rule cp\n command = cp $i $out\n "
114114 );
Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ let make_custom_rules
242242 define
243243 ~command: (
244244 if Ext_sys. is_windows_or_cygwin then
245- " cmd.exe /C copy /Y $i $out > null "
245+ " cmd.exe /C copy /Y $i $out >NUL "
246246 else " cp $i $out"
247247 )
248248 " copy_resource" in
Original file line number Diff line number Diff line change @@ -12998,7 +12998,7 @@ let make_custom_rules
1299812998 define
1299912999 ~command:(
1300013000 if Ext_sys.is_windows_or_cygwin then
13001- "cmd.exe /C copy /Y $i $out > null "
13001+ "cmd.exe /C copy /Y $i $out >NUL "
1300213002 else "cp $i $out"
1300313003 )
1300413004 "copy_resource" in
@@ -13616,7 +13616,7 @@ let output_installation_file cwd_lib_bs namespace files_to_install =
1361613616 let bs = ".."//"bs" in
1361713617 let sb = ".."//".." in
1361813618 o (if Ext_sys.is_windows_or_cygwin then
13619- "rule cp\n command = cmd.exe /C copy /Y $i $out > null \n"
13619+ "rule cp\n command = cmd.exe /C copy /Y $i $out >NUL \n"
1362013620 else
1362113621 "rule cp\n command = cp $i $out\n"
1362213622 );
You can’t perform that action at this time.
0 commit comments