diff options
| author | ruki <[email protected]> | 2015-07-23 14:08:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-07-23 14:08:05 +0800 |
| commit | f15afd16a3b714f35890b2426458324dc746bdfe (patch) | |
| tree | 17d894cc0287aeeb571331701e7a7bd6eeeb22fe | |
| parent | 944deba02b0f168268526650364ee09d295020de (diff) | |
print verbose install log for windows
| -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
|
