We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c057641 commit cec7806Copy full SHA for cec7806
.gitignore
@@ -6,3 +6,4 @@ xcuserdata/
6
DerivedData/
7
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8
/.vscode
9
+*.pyc
generate.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+# This script compiles all .gyb files in the Sources directory
4
5
+find Sources -name '*.gyb' | \
+ while read file; do \
+ ./gyb/gyb --line-directive '' -o "${file%.gyb}" "$file"; \
+ done
gyb/gyb
@@ -0,0 +1,3 @@
+#!/usr/bin/env python2.7
+import gyb
+gyb.main()
0 commit comments