Seeing as Command-T is usually pointing at next, for example, and I don't want
to add the complexity of special-casing this at this point.
local PROJECT
PROJECT="$1"
echo "Updating $PROJECT"
- git --git-dir "../$PROJECT/.git" archive --prefix="$PROJECT/input/" master \
+ git --git-dir "../$PROJECT/.git" archive --prefix="$PROJECT/input/" HEAD \
| tar -x -C tests/fixtures/integration -f -
mkdir -p "tests/fixtures/integration/$PROJECT/golden"
}