Skip to content

Commit

Permalink
Bump TNKIT and fix ci.py / bootstrap
Browse files Browse the repository at this point in the history
This fix the searchfield issue for TNTableViewDataSource
  • Loading branch information
CyrilPeponnet committed Mar 17, 2015
1 parent 2b87696 commit 093f8d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ArchipelClient/Libraries/TNKit
2 changes: 1 addition & 1 deletion ArchipelClient/bootstrap
Expand Up @@ -318,7 +318,7 @@ def client_build_lpkit():
def client_build_tnkit():
print " * Building TNKit";
s = Spinner();
ret = os.system("cd ./Libraries/TNKit && jake debug %s && jake release %s" % (REDIRECT, REDIRECT))
ret = os.system("cd ./Libraries/TNKit && export CAPP_BUILD=./Build && jake debug %s && jake release %s" % (REDIRECT, REDIRECT))
s.stop()
if ret != 0:
print "\033[31mUnable to build TNKit\033[0m"
Expand Down
2 changes: 1 addition & 1 deletion ci.py
Expand Up @@ -74,7 +74,7 @@ def buildStropheCappuccino():

def buildTNKit():
os.system("echo \* Starting to build TNKit")
if os.system("cd ./ArchipelClient/Libraries/TNKit && jake release && jake debug"):
if os.system("cd ./ArchipelClient/Libraries/TNKit && export CAPP_BUILD=./Build && jake release && jake debug"):
os.system("echo \* unable to build TNKit")
sys.exit(-7)

Expand Down

0 comments on commit 093f8d9

Please sign in to comment.