Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

22
vendor/xkbcommon-dl/update-docs.sh vendored Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
set -o errexit -o nounset
: ${TRAVIS:?"This should only be run on Travis CI."}
rev=$(git rev-parse --short HEAD)
git init
git config user.name "Francesca Frangipane"
git config user.email "francesca@comfysoft.net"
git remote add upstream "https://$GH_TOKEN@github.com/francesca64/xkbcommon-dl.git"
git fetch upstream
git reset upstream/gh-pages
rm -rf docs
mv target/doc docs
git add -A docs
git commit -m "Updated docs for ${rev}"
git push --force --quiet upstream HEAD:gh-pages