mirror of
https://github.com/zhigang1992/Argo.git
synced 2026-01-12 22:45:56 +08:00
This solves a couple of issues: 1. Users that pass `--no-build --use-submodules` can now use Argo without running into errors from missing framework search paths (fixes #121) 2. Users that want to use Submodules as a dependency management solution can now do so without having to jump through any additional hoops. We're still going to use Carthage as a development dependency, but it's going to act as a semantic wrapper around submodules, instead of relying on the binaries.
5 lines
121 B
Bash
Executable File
5 lines
121 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
brew install carthage 2> /dev/null
|
|
carthage bootstrap --use-submodules --no-build --no-use-binaries
|