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 4f1560e commit 294ee40Copy full SHA for 294ee40
build/zip-tutorial.sh
@@ -6,9 +6,12 @@
6
pwd
7
ls -l
8
mkdir -p cjit-tutorial
9
-cp -ra cjit-bin/release/* cjit-tutorial
+bins=`ls cjit-bin`
10
+for i in ${bins}; do
11
+ mv cjit-bin/${i} cjit-tutorial/`echo ${i} | sed 's/release/cjit/'`
12
+done
13
cp -ra examples cjit-tutorial
-git clone --depth 1 https://github.com/dyne/docs
-cp -ra docs/src/cjit cjit-tutorial/docs
14
+git clone --depth 1 https://github.com/dyne/docs dyne-docs
15
+cp -ra dyne-docs/src/cjit cjit-tutorial/docs
16
17
zip a cjit-tutorial.zip cjit-tutorial
0 commit comments