diff --git a/dev/push-subrepos.sh b/dev/push-subrepos.sh index eeb41c22..70195dbc 100755 --- a/dev/push-subrepos.sh +++ b/dev/push-subrepos.sh @@ -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 diff --git a/dev/update-subrepos.sh b/dev/update-subrepos.sh index 0eab69e0..02a57c60 100755 --- a/dev/update-subrepos.sh +++ b/dev/update-subrepos.sh @@ -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