mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 16:27:58 +00:00
fb73a4eef6
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Alexander Popiak <alexander.popiak@parity.io>
17 lines
315 B
Bash
Executable File
17 lines
315 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export TERM=xterm
|
|
PROJECT_ROOT=`git rev-parse --show-toplevel`
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "node-template-release.sh path_to_target_archive"
|
|
exit 1
|
|
fi
|
|
|
|
PATH_TO_ARCHIVE=$1
|
|
cd $PROJECT_ROOT/.maintain/node-template-release
|
|
|
|
cargo run $PROJECT_ROOT/bin/node-template $PATH_TO_ARCHIVE
|