mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-02 12:01:41 +01:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
31 lines
777 B
Bash
Executable File
31 lines
777 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
|
|
|
|
pnpm nx clean
|
|
VERSION=$version pnpm build
|
|
|
|
# include the sample config in the tarball. Arguably this should be done by
|
|
# `pnpm 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"
|