7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if ! diff Cartfile.resolved Carthage/Cartfile.resolved &>/dev/null; then
|
|
carthage bootstrap --platform iOS
|
|
cp Cartfile.resolved Carthage
|
|
fi
|