gossip/packaging/tar/make-tar.sh

8 lines
260 B
Bash
Raw Normal View History

2023-02-11 00:58:07 +00:00
#!/bin/sh
VERSION=$(grep '^version' ../../Cargo.toml | awk -F\" '{print $2}')
echo $VERSION;
2023-02-11 00:58:07 +00:00
cd ../../..
tar -cv --exclude=gossip/.git --exclude=gossip/target --exclude=gossip/packaging -f - gossip | bzip2 -c > gossip/packaging/tar/gossip-${VERSION}.tar.bz2