mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
f248477f82
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
38 lines
803 B
Bash
Executable File
38 lines
803 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
dev=""
|
|
if [ "$1" = '-d' ]; then
|
|
dev=":dev"
|
|
fi
|
|
|
|
if [ -n "$DIST_VERSION" ]; then
|
|
version=$DIST_VERSION
|
|
else
|
|
version=`git describe --dirty --tags || echo unknown`
|
|
fi
|
|
|
|
npm run clean
|
|
npm run build$dev
|
|
|
|
# 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
|
|
cp -r webapp vector-$version
|
|
|
|
# if $version looks like semver with leading v, strip it before writing to file
|
|
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
|
echo ${version:1} > riot-$version/version
|
|
else
|
|
echo ${version} > riot-$version/version
|
|
fi
|
|
|
|
tar chvzf dist/riot-$version.tar.gz riot-$version
|
|
rm -r riot-$version
|
|
|
|
echo
|
|
echo "Packaged dist/riot-$version.tar.gz"
|