Skip to content

Commit

Permalink
create_package: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
arturoc committed Jun 28, 2014
1 parent 8bec5bc commit 03ab25e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/dev/create_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ function createPackage {
rm -Rf ofxAccelerometer
fi


if [ "$pkg_platform" == "ios" ] || [ "$pkg_platform" == "android" ]; then
rm -Rf ofxVectorGraphics
rm -Rf ofxKinect
Expand All @@ -362,7 +361,7 @@ function createPackage {
fi

#android, move paths.default.make to paths.make
if [ "$pkg_platform" = "android" ]
if [ "$pkg_platform" == "android" ]; then
cd ${pkg_root}
mv libs/openFrameworksCompiled/android/paths.default.make libs/openFrameworksCompiled/android/paths.make
fi
Expand Down

0 comments on commit 03ab25e

Please sign in to comment.