dev: add mach-freetype subrepo

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-05-22 23:38:02 -07:00 committed by Stephen Gutekanst
parent cb7bd5f2f9
commit fb95a5ae95
2 changed files with 4 additions and 0 deletions

View file

@ -5,3 +5,4 @@ cd "$(dirname "${BASH_SOURCE[0]}")"/..
./dev/update-subrepos.sh
git subtree push --prefix glfw mach-glfw main
git subtree push --prefix gpu-dawn mach-gpu-dawn main
git subtree push --prefix freetype mach-freetype main

View file

@ -5,10 +5,13 @@ cd "$(dirname "${BASH_SOURCE[0]}")"/..
if [ -n "${GITHUB_ACTIONS:-}" ]; then
git remote add -f mach-glfw "https://slimsag:$ACCESS_TOKEN@github.com/hexops/mach-glfw" || true
git remote add -f mach-gpu-dawn "https://slimsag:$ACCESS_TOKEN@github.com/hexops/mach-gpu-dawn" || true
git remote add -f mach-freetype "https://slimsag:$ACCESS_TOKEN@github.com/hexops/mach-freetype" || true
else
git remote add -f mach-glfw git@github.com:hexops/mach-glfw || true
git remote add -f mach-gpu-dawn git@github.com:hexops/mach-gpu-dawn || true
git remote add -f mach-freetype git@github.com:hexops/mach-freetype || true
fi
git fetch mach-glfw
git fetch mach-gpu-dawn
git fetch mach-freetype