Skip to content

Commit

Permalink
Merge pull request #5415 from bakercp/master
Browse files Browse the repository at this point in the history
fixes.
  • Loading branch information
bakercp committed Jan 6, 2017
2 parents ddd8512 + c995404 commit 744f1fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/ci/addons/install.sh
Expand Up @@ -30,16 +30,16 @@ if [ -f scripts/ci/$TARGET/install.sh ]; then
fi

cd ~
mv $TRAVIS_BUILD_DIR ~/openFrameworks/addons/
mkdir -p ~/openFrameworks/libs/openFrameworksCompiled/lib/$TARGET/
mv $TRAVIS_BUILD_DIR $OF_ROOT/addons/
mkdir -p $OF_ROOT/libs/openFrameworksCompiled/lib/$TARGET/

cd ~/openFrameworks/libs/openFrameworksCompiled/lib/$TARGET/
cd $OF_ROOT/libs/openFrameworksCompiled/lib/$TARGET/
if [ "$TARGET" == "android" ]; then
mkdir armv7;
mkdir x86;

cd armv7;
wget http://ci.openframeworks.cc/openFrameworks_libs/$TARGET/armv7libopenFrameworksDebug.a;
wget http://ci.openframeworks.cc/openFrameworks_libs/$TARGET/armv7/libopenFrameworksDebug.a;
cd ../x86;
wget http://ci.openframeworks.cc/openFrameworks_libs/$TARGET/x86/libopenFrameworksDebug.a;
cd ..;
Expand Down

0 comments on commit 744f1fb

Please sign in to comment.