You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
383 B
21 lines
383 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
PROJECT_ROOT="$(dirname "$(readlink -e "$0")")/../../.."
|
||
|
CONTRIB="$PROJECT_ROOT/contrib"
|
||
|
CONTRIB_SDIST="$CONTRIB/build-linux/sdist"
|
||
|
DISTDIR="$PROJECT_ROOT/dist"
|
||
|
|
||
|
. "$CONTRIB"/build_tools_util.sh
|
||
|
|
||
|
|
||
|
"$CONTRIB"/make_packages || fail "make_packages failed"
|
||
|
|
||
|
"$CONTRIB_SDIST"/make_tgz || fail "make_tgz failed"
|
||
|
|
||
|
|
||
|
info "done."
|
||
|
ls -la "$DISTDIR"
|
||
|
sha256sum "$DISTDIR"/*
|