Move gyb to buildscripts. Delete Vendor folder.

This commit is contained in:
Brent Simmons
2025-04-24 08:58:57 -07:00
parent 69466f2a06
commit 4bb71db846
3 changed files with 1 additions and 1 deletions

View File

@@ -3,5 +3,5 @@
find "${PROJECT_DIR}" -name '*.gyb' |
while read file; do
echo "Generating ${file%.gyb}";
"${PROJECT_DIR}/Vendor/gyb" --line-directive '' -o "${file%.gyb}" "$file";
"${PROJECT_DIR}/buildscripts/gyb" --line-directive '' -o "${file%.gyb}" "$file";
done