polaris/build_release_unix.sh
2017-05-29 19:13:03 -07:00

14 lines
423 B
Bash

#!/bin/sh
echo "Creating output directory"
mkdir -p release/tmp
echo "Copying package files"
cp -r web src Cargo.toml Cargo.lock res/unix/Makefile release/tmp
cp res/default_config.toml release/tmp/polaris.toml
echo "Creating tarball"
POLARIS_VERSION=$(grep ^version Cargo.toml | awk '{print $3}' | tr -d '"\r\n')
tar -zc -C release/tmp -f release/polaris-$POLARIS_VERSION.tar.gz .
echo "Cleaning up"
rm -rf release/tmp