NetNewsWire/updateSecrets.sh

7 lines
161 B
Bash
Raw Normal View History

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