mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-11 17:06:46 +01:00
7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find "${PROJECT_DIR}" -name '*.gyb' |
|
|
while read file; do
|
|
echo "Generating ${file%.gyb}";
|
|
"${PROJECT_DIR}/Vendor/gyb" --line-directive '' -o "${file%.gyb}" "$file";
|
|
done |