Skip to content

Commit

Permalink
added release build script, cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisppaul committed Sep 29, 2020
1 parent 898b750 commit e29a037
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions tools/pack-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#! /bin/sh

LIB_NAME=BlinkSenseMove
ZIP_NAME=$LIB_NAME.zip
LIB_DIR=../libraries


cd $LIB_DIR

find .. -name ".DS_Store" -print0 | xargs -0 rm -f

if [ -f "$ZIP_NAME" ]; then
echo "# deleting existing zip file"
rm "$ZIP_NAME"
fi

zip --quiet -r "$ZIP_NAME" ./$LIB_NAME

0 comments on commit e29a037

Please sign in to comment.