13 lines
548 B
Text
13 lines
548 B
Text
|
#!/bin/bash
|
||
|
echo
|
||
|
echo "Updating installer binary files ...."
|
||
|
echo
|
||
|
echo "... copying zenith to installer/bin folder"
|
||
|
cp ../dist-newstyle/build/x86_64-linux/ghc-9.4.8/zenith-0.5.3.0/build/zenith/zenith zenith-0.5.3.0-binary/bin/
|
||
|
echo "... copying assets folder to installer/assets folder"
|
||
|
cp ../assets/* zenith-0.5.3.0-binary/bin/
|
||
|
echo "... copying librustzcash_wrapper.so to installer/lib folder"
|
||
|
cp ../zcash-haskell/librustzcash-wrapper/target/x86_64-unknown-linux-gnu/debug/librustzcash_wrapper.so zenith-0.5.3.0-binary/lib/
|
||
|
echo
|
||
|
echo "Done "
|
||
|
echo
|