element-web/scripts/package.sh
Richard van der Hoff 48eec199bb Set uid/gid to 0 in tarball
Give the files in thar tarball user and group root, so that when you untar it
you don't get a surprise if you happen to have a user named the same as the
build user.
2017-06-22 07:27:38 +01:00

37 lines
823 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 riot-$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 chvz --owner=0 --group=0 -f dist/riot-$version.tar.gz riot-$version
rm -r riot-$version
echo
echo "Packaged dist/riot-$version.tar.gz"