diff options
| -rw-r--r-- | install.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.bat b/install.bat index 625e94c43..3db8a0759 100644 --- a/install.bat +++ b/install.bat @@ -34,13 +34,13 @@ if not exist "%xmake_dir_install%" mkdir "%xmake_dir_install%" rem compile xmake-core
echo compiling xmake-core...
cd core
-cmd /K build.bat > ..\install.log
+cmd /K build.bat
cd ..
rem install the xmake core file
set xmake_core=core\bin\demo.pkg\bin\msvc\x86\demo.exe
set xmake_core_install=%xmake_dir_install%\xmake_core.exe
-copy /Y "%xmake_core%" "%xmake_core_install%" >> install.log
+copy /Y "%xmake_core%" "%xmake_core_install%" > install.log
rem install the xmake directory
xcopy /S /Q /Y "xmake" "%xmake_dir_install%" >> install.log
|
