NetNewsWire/buildscripts/updateSecrets.sh

7 lines
194 B
Bash
Raw Normal View History

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