Files
element-web/scripts/package.sh
T

38 lines
801 B
Bash
Raw Normal View History

#!/bin/bash
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
2017-05-15 21:14:01 +01:00
cp -r webapp riot-$version
# if $version looks like semver with leading v, strip it before writing to file
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
2017-05-11 17:46:08 +01:00
echo ${version:1} > riot-$version/version
else
2017-05-11 17:46:08 +01:00
echo ${version} > riot-$version/version
fi
2017-05-11 17:46:08 +01:00
tar chvzf dist/riot-$version.tar.gz riot-$version
rm -r riot-$version
echo
2017-05-11 17:46:08 +01:00
echo "Packaged dist/riot-$version.tar.gz"