vendor the gyb dependency
This commit is contained in:
parent
69ebecaf40
commit
a4f6adbd85
3
.gitignore
vendored
3
.gitignore
vendored
@ -69,4 +69,7 @@ fastlane/Preview.html
|
|||||||
fastlane/screenshots
|
fastlane/screenshots
|
||||||
fastlane/test_output
|
fastlane/test_output
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/Shared/Secrets.swift
|
/Shared/Secrets.swift
|
||||||
|
*.py[cod]
|
||||||
|
3
Vendor/gyb
vendored
Executable file
3
Vendor/gyb
vendored
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env python2.7
|
||||||
|
import gyb
|
||||||
|
gyb.main()
|
1267
Vendor/gyb.py
vendored
Normal file
1267
Vendor/gyb.py
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,12 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ ! $(type -P "gyb") ]; then
|
|
||||||
echo "gyb not installed. Install via: brew install nshipster/formulae/gyb"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
find . -name '*.gyb' |
|
find . -name '*.gyb' |
|
||||||
while read file; do
|
while read file; do
|
||||||
echo "running ${file%.gyb}";
|
echo "running ${file%.gyb}";
|
||||||
gyb --line-directive '' -o "${file%.gyb}" "$file";
|
./Vendor/gyb --line-directive '' -o "${file%.gyb}" "$file";
|
||||||
done
|
done
|
Loading…
x
Reference in New Issue
Block a user