diff options
author | Sage Weil <sage@redhat.com> | 2015-05-31 23:58:49 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2015-05-31 23:58:49 +0200 |
commit | 31e93908c958714ef450d1f56af2a7e5b0ba5406 (patch) | |
tree | ecbface2c737dbbba81bce0b18b3960a9d50b728 /bin | |
parent | make_dist_tarball.sh: make gz and bz2 archives (diff) | |
download | ceph-31e93908c958714ef450d1f56af2a7e5b0ba5406.tar.xz ceph-31e93908c958714ef450d1f56af2a7e5b0ba5406.zip |
make_dist.sh: rename from bin/make_dist_tarball.sh
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_dist_tarball.sh | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/bin/make_dist_tarball.sh b/bin/make_dist_tarball.sh deleted file mode 100755 index bdf1af282f2..00000000000 --- a/bin/make_dist_tarball.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -e - -if [ ! -d .git ]; then - echo "no .git present. run this from the base dir of the git checkout." - exit 1 -fi - -bindir=`dirname $0` - -version=$1 -[ -z "$version" ] && version=`git describe | cut -c 2-` -outfile="ceph-$version" - -# update submodules -echo "updating submodules..." -force=$(if git submodule usage 2>&1 | grep --quiet 'update.*--force'; then echo --force ; fi) -if ! git submodule sync || ! git submodule update $force --init --recursive; then - echo "Error: could not initialize submodule projects" - echo " Network connectivity might be required." - exit 1 -fi - -# clean out old cruft... -echo "cleanup..." -rm -f $outfile.tar $outfile.tar.gz - -# build new tarball -echo "building tarball..." -$bindir/git-archive-all.sh --prefix ceph-$version/ \ - --verbose \ - --ignore corpus \ - $outfile.tar -echo "compressing to gz and bz2..." -gzip -k -9 $outfile.tar -bzip2 -9 $outfile.tar - -echo "done." |