Refine the set of directories that are checked during WPT syncing.

This commit is contained in:
Josh Matthews 2018-02-23 12:58:56 -05:00 committed by GitHub
parent 5b050d093e
commit 86e4fa50d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ function unsafe_run_tests() {
function unsafe_update_metadata() {
./mach update-wpt "${1}" || return 1
# Ensure any new directories or ini files are included in these changes.
git add tests/wpt/ || return 2
git add tests/wpt/metadata tests/wpt/mozilla/meta || return 2
# Merge all changes with the existing commit.
git commit -a --amend --no-edit || return 3
}