diff --git a/autoninja b/autoninja index 3847c3dc3..f8a8e0c12 100755 --- a/autoninja +++ b/autoninja @@ -16,9 +16,6 @@ if eval "$command"; then if [ "$NINJA_SUMMARIZE_BUILD" == "1" ]; then python "$(dirname -- "$0")/post_build_ninja_summary.py" "$@" fi - - # Collect ninjalog from googler. - "$(dirname -- "$0")/ninjalog_uploader_wrapper.py" --cmd $command exit fi # Return an error code of 1 so that if a developer types: diff --git a/autoninja.bat b/autoninja.bat index ff8e4bd18..5c778a955 100755 --- a/autoninja.bat +++ b/autoninja.bat @@ -13,7 +13,6 @@ FOR /f "usebackq tokens=*" %%a in (`python %~dp0autoninja.py "%*"`) do echo %%a REM Use call to invoke python script here, because we use python via python.bat. @if "%NINJA_SUMMARIZE_BUILD%" == "1" call python.bat %~dp0post_build_ninja_summary.py %* -@call python.bat %~dp0ninjalog_uploader_wrapper.py --cmdline %* exit /b :buildfailure