element-web/scripts/package.sh

36 lines
866 B
Bash
Raw Normal View History

#!/bin/bash
set -e
if [ -n "$DIST_VERSION" ]; then
version=$DIST_VERSION
2016-11-02 12:38:11 +01:00
else
version=`git describe --dirty --tags || echo unknown`
fi
yarn clean
yarn build
# include the sample config in the tarball. Arguably this should be done by
# `yarn build`, but it's just too painful.
cp config.sample.json webapp/
mkdir -p dist
cp -r webapp element-$version
2019-04-24 12:27:07 +02:00
# Just in case you have a local config, remove it before packaging
rm element-$version/config.json || true
2019-04-24 12:27:07 +02:00
# if $version looks like semver with leading v, strip it before writing to file
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
echo ${version:1} > element-$version/version
else
echo ${version} > element-$version/version
fi
tar chvzf dist/element-$version.tar.gz element-$version
rm -r element-$version
echo
echo "Packaged dist/element-$version.tar.gz"