Files
element-web/scripts/package.sh
T

36 lines
866 B
Bash
Raw Normal View History

#!/bin/bash
set -e
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
yarn clean
2020-01-08 16:09:26 -07:00
yarn build
2016-11-21 10:40:35 +00:00
# include the sample config in the tarball. Arguably this should be done by
# `yarn build`, but it's just too painful.
2016-11-21 10:40:35 +00:00
cp config.sample.json webapp/
mkdir -p dist
2020-07-31 15:59:13 -05:00
cp -r webapp element-$version
2019-04-24 11:27:07 +01:00
# Just in case you have a local config, remove it before packaging
2020-07-31 15:59:13 -05:00
rm element-$version/config.json || true
2019-04-24 11:27:07 +01:00
# if $version looks like semver with leading v, strip it before writing to file
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
2020-07-31 15:59:13 -05:00
echo ${version:1} > element-$version/version
else
2020-07-31 15:59:13 -05:00
echo ${version} > element-$version/version
fi
2020-07-31 15:59:13 -05:00
tar chvzf dist/element-$version.tar.gz element-$version
rm -r element-$version
echo
2020-07-31 15:59:13 -05:00
echo "Packaged dist/element-$version.tar.gz"