Author: Antonio Cuni <[email protected]> Branch: hpy Changeset: r98104:114766a84394 Date: 2019-11-18 11:08 +0100 http://bitbucket.org/pypy/pypy/changeset/114766a84394/
Log: make the script nicer diff --git a/pypy/module/hpy_universal/update_vendored.sh b/pypy/module/hpy_universal/update_vendored.sh --- a/pypy/module/hpy_universal/update_vendored.sh +++ b/pypy/module/hpy_universal/update_vendored.sh @@ -11,10 +11,14 @@ VENDORED=$DIR/_vendored HPY=$1 -echo "status of the repo $HPY:" +echo "GIT status of $HPY" git -C "$HPY" --no-pager log --oneline -n 1 -git -C "$HPY" describe --abbrev --always --dirty +git -C "$HPY" --no-pager diff --stat -cp -R "$HPY"/hpy-api/hpy_devel/include/* "$VENDORED/include" +#cp -R "$HPY"/hpy-api/hpy_devel/include/* "$VENDORED/include" cp -R "$HPY"/test/* "$VENDORED/test" +echo +echo +echo "HG status of pypy" +hg st $DIR _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
