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.
2 parents 59af39a + cafc5a1 commit 6d5c880Copy full SHA for 6d5c880
scripts/publish-release.sh
@@ -20,12 +20,19 @@ fi
20
21
echo "preparing release file"
22
23
-# pack up compiled lib and header
24
mkdir $RELEASE_PATH
25
-cp target/release/libfilecoin_proofs.a $RELEASE_PATH
26
-cp filecoin-proofs/libfilecoin_proofs.h $RELEASE_PATH
+mkdir $RELEASE_PATH/bin
+mkdir $RELEASE_PATH/include
+mkdir $RELEASE_PATH/lib
27
+
28
+cp target/release/paramcache $RELEASE_PATH/bin/
29
+cp filecoin-proofs/libfilecoin_proofs.h $RELEASE_PATH/include/
30
+cp target/release/libfilecoin_proofs.a $RELEASE_PATH/lib/
31
32
pushd $RELEASE_PATH
-tar -czf $RELEASE_FILE ./libfilecoin_proofs.*
33
34
+tar -czf $RELEASE_FILE ./*
35
36
popd
37
38
echo "release file created: $RELEASE_FILE"
0 commit comments