Files
element-web/scripts/package.sh
T

31 lines
590 B
Bash
Raw Normal View History

#!/bin/sh
set -e
2016-11-08 17:08:01 +00:00
dev=""
2016-11-11 18:07:03 +00:00
if [ "$1" = '-d' ]; then
2016-11-08 17:08:01 +00:00
dev=":dev"
fi
2016-11-04 09:40:24 +00:00
if [ -n "$DIST_VERSION" ]; then
version=$DIST_VERSION
2016-11-02 11:38:11 +00:00
else
version=`git describe --dirty --tags || echo unknown`
fi
2016-11-08 15:46:21 +00:00
npm run clean
2016-11-08 17:08:01 +00:00
npm run build$dev
2016-11-21 10:40:35 +00:00
# include the sample config in the tarball. Arguably this should be done by
# `npm run build`, but it's just too painful.
cp config.sample.json webapp/
mkdir -p dist
2016-11-08 15:46:21 +00:00
cp -r webapp vector-$version
echo $version > vector-$version/version
tar chvzf dist/vector-$version.tar.gz vector-$version
rm -r vector-$version
echo
echo "Packaged dist/vector-$version.tar.gz"