browser(webkit): call build.sh twice on Windows (#4875)

This commit is contained in:
Yury Semikhatsky 2021-01-04 10:49:46 -08:00 committed by GitHub
parent ae935a43d9
commit 736ef4e879
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,6 +71,10 @@ elif [[ "$(uname)" == "Linux" ]]; then
fi
elif [[ "$(uname)" == MINGW* ]]; then
/c/Windows/System32/cmd.exe "/c $(cygpath -w ${SCRIPT_FOLDER}/buildwin.bat)"
# Run build step twice on Windows to work around adjust-angle-include-paths.py not
# being called at right time. See
# https://github.com/WebKit/WebKit/commit/e9a19fe7e3c245252be6ed70c86639d09227a6dc
/c/Windows/System32/cmd.exe "/c $(cygpath -w ${SCRIPT_FOLDER}/buildwin.bat)"
else
echo "ERROR: cannot upload on this platform!" 1>&2
exit 1;