mirror of
https://github.com/element-hq/element-web
synced 2024-11-21 08:45:40 +03:00
d36cfc37e2
* Make the version file part of webpack output Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix outputFile path for Windows compat Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
30 lines
774 B
Bash
Executable file
30 lines
774 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ -n "$DIST_VERSION" ]; then
|
|
version=$DIST_VERSION
|
|
else
|
|
version=`git describe --dirty --tags || echo unknown`
|
|
fi
|
|
|
|
yarn clean
|
|
VERSION=$version 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
|
|
|
|
# Just in case you have a local config, remove it before packaging
|
|
rm element-$version/config.json || true
|
|
|
|
# GNU/BSD compatibility workaround
|
|
tar_perms=(--owner=0 --group=0) && [ "$(uname)" == "Darwin" ] && tar_perms=(--uid=0 --gid=0)
|
|
tar "${tar_perms[@]}" -chvzf dist/element-$version.tar.gz element-$version
|
|
rm -r element-$version
|
|
|
|
echo
|
|
echo "Packaged dist/element-$version.tar.gz"
|