Skip to content

Commit

Permalink
wrong instruction to copy libraries in OSX, close #11 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrián González Sieira committed Aug 30, 2017
1 parent c566e94 commit b5bd86e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion copy-resources.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/usr/bin/env bash
echo "Copy resources to target/lib..."
cp joctomap-natives/lib/*.so* target/lib
if [[ "$OSTYPE" == "linux-gnu" ]]; then
cp joctomap-natives/lib/*.so* target/lib
elif [[ "$OSTYPE" == "darwin"* ]]; then
cp joctomap-natives/lib/*.dylib* target/lib
fi

0 comments on commit b5bd86e

Please sign in to comment.