Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
316 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
2021-12-07 15:11:01 +11:00
# Runs package.sh, passing DIST_VERSION determined by git
2019-04-26 12:22:32 +01:00
set -ex
2020-11-24 14:05:44 +00:00
rm dist/element-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
2026-02-26 10:26:38 +01:00
DIST_VERSION=`$(dirname $0)/../../../scripts/get-version-from-git.sh`
2016-03-11 14:30:53 +00:00
2021-12-07 15:11:01 +11:00
CI_PACKAGE=true DIST_VERSION=$DIST_VERSION scripts/package.sh