We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9da0bd commit 9bf8bdeCopy full SHA for 9bf8bde
.gitignore
@@ -35,3 +35,7 @@
35
#Vim files
36
*.*~
37
*.swp
38
+
39
+#Releases
40
+YSoft-samd-*.tar.gz
41
build_package.sh
@@ -0,0 +1,23 @@
1
+#!/bin/bash
2
3
+VERSION="0.0.1"
4
+RELEASE="YSoft-samd-$VERSION.tar.gz"
5
+RELEASE_DIR="../yi-play-arduin-release/"
6
7
+REMOVE_FILES="build_package.sh package_iotaysoftcom_index.json"
8
9
+echo "Building package $VERSION"
10
11
+rm -rf ${RELEASE_DIR}/*
12
+mkdir -p ${RELEASE_DIR}
13
+cp -r * ${RELEASE_DIR}
14
15
+for f in $REMOVE_FILES
16
+do
17
+ rm -rf ${RELEASE_DIR}/$f
18
+done
19
20
+tar -czf $RELEASE -C $RELEASE_DIR .
21
22
+echo "Done $RELEASE"
23
+shasum -a 256 $RELEASE
0 commit comments