Skip to content

Commit c65a994

Browse files
committed
Update the release preparation script to work with new artifacts
1 parent eeff65b commit c65a994

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

prepare-release.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ MY_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
66
source common.sh
77

88
WORK_DIR="${MY_DIR}/prep"
9-
ARTIFACT_TARBALL="${DIST_PACKAGE_NAME_BASE}.tar.bz2"
10-
ARTIFACTS_DIR="${WORK_DIR}/artifacts"
9+
ARTIFACTS_DIR="${WORK_DIR}"
1110

1211
ARTIFACT_ZIP="${1}"
1312
XA_TAG_COMPONENT="${2}"
@@ -38,12 +37,6 @@ function prepare()
3837
echo Unpacking artifact ZIP
3938
unzip "${ARTIFACT_ZIP}"
4039

41-
if [ ! -f "${ARTIFACT_TARBALL}" ]; then
42-
die Build artifact tarball $(pwd)/${ARTIFACT_TARBALL} not found
43-
fi
44-
45-
echo Unpacking binaries tarball
46-
tar xf "${ARTIFACT_TARBALL}"
4740
if [ ! -d "${ARTIFACTS_DIR}" ]; then
4841
die Artifacts directory ${ARTIFACTS_DIR} does not exist
4942
fi

0 commit comments

Comments
 (0)