Last active
November 1, 2016 15:00
-
-
Save ssp/1c152c9a70bace500108ab9bae69624f to your computer and use it in GitHub Desktop.
Script to clone and build gitx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# | |
# Script to clone gitx from github and build it using | |
# the scripts provided by the project. | |
# | |
# Sven-S. Porst @ssp <[email protected]> | |
# | |
git clone https://github.com/ssp/gitx.git | |
cd gitx | |
git submodule update --init --recursive | |
cd objective-git | |
script/bootstrap | |
script/update_libgit2 | |
cd .. | |
./build.py build release | |
open build/Release |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As Mark said, just skip the
./build.py build release
step and open the XCodeProj. Then run Build. It should create a functional binary inrelease
dir.