NetNewsWire/buildscripts/updateSecrets.sh

7 lines
194 B
Bash
Raw Normal View History

2019-11-26 14:58:16 +01:00
#!/bin/bash
find "${PROJECT_DIR}" -name '*.gyb' |
2019-11-27 17:40:24 +01:00
while read file; do
echo "Generating ${file%.gyb}";
"${PROJECT_DIR}/Vendor/gyb" --line-directive '' -o "${file%.gyb}" "$file";
2019-11-26 14:58:16 +01:00
done