Last active
November 1, 2016 15:00
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 <ssp-web@earthlingsoft.net> | |
# | |
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 |
@elreydetodo Just run the release scheme from XCode
As Mark said, just skip the ./build.py build release
step and open the XCodeProj. Then run Build. It should create a functional binary in release
dir.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like ObjectiveGit didn't get linked in properly... I'm not sure what to do from here.