forked from matrix/element-web
stage 0.5 rebrand (rename dist release)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
0e0918d07c
commit
f248477f82
|
@ -34,7 +34,7 @@ npm run test
|
||||||
# run eslint
|
# run eslint
|
||||||
npm run lintall -- -f checkstyle -o eslint.xml || true
|
npm run lintall -- -f checkstyle -o eslint.xml || true
|
||||||
|
|
||||||
rm dist/vector-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
||||||
|
|
||||||
# node_modules deps from 'npm install' don't have a .git dir so can't
|
# node_modules deps from 'npm install' don't have a .git dir so can't
|
||||||
# rev-parse; but they do set the commit in package.json under 'gitHead' which
|
# rev-parse; but they do set the commit in package.json under 'gitHead' which
|
||||||
|
|
|
@ -25,13 +25,13 @@ cp -r webapp vector-$version
|
||||||
|
|
||||||
# if $version looks like semver with leading v, strip it before writing to file
|
# if $version looks like semver with leading v, strip it before writing to file
|
||||||
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
if [[ ${version} =~ ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+(-.+)?$ ]]; then
|
||||||
echo ${version:1} > vector-$version/version
|
echo ${version:1} > riot-$version/version
|
||||||
else
|
else
|
||||||
echo ${version} > vector-$version/version
|
echo ${version} > riot-$version/version
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tar chvzf dist/vector-$version.tar.gz vector-$version
|
tar chvzf dist/riot-$version.tar.gz riot-$version
|
||||||
rm -r vector-$version
|
rm -r riot-$version
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Packaged dist/vector-$version.tar.gz"
|
echo "Packaged dist/riot-$version.tar.gz"
|
||||||
|
|
Loading…
Reference in New Issue