open-nomad/scripts/dist.sh

35 lines
843 B
Bash
Raw Normal View History

2015-09-28 06:45:09 +00:00
#!/bin/bash
2015-06-01 11:46:21 +00:00
set -e
# Get the version from the command line
VERSION=$1
if [ -z $VERSION ]; then
echo "Please specify a version."
exit 1
fi
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
# Change into that dir because we expect that
cd $DIR
# Zip all the files
2015-09-28 06:21:00 +00:00
rm -rf ./pkg/dist
mkdir -p ./pkg/dist
for FILENAME in $(find ./pkg -mindepth 1 -maxdepth 1 -type f); do
2015-06-01 11:46:21 +00:00
FILENAME=$(basename $FILENAME)
2015-09-28 06:21:00 +00:00
cp ./pkg/${FILENAME} ./pkg/dist/nomad_${VERSION}_${FILENAME}
2015-06-01 11:46:21 +00:00
done
2015-09-28 06:45:09 +00:00
# Make the checksums
pushd ./pkg/dist
shasum -a256 * > ./nomad_${VERSION}_SHA256SUMS
2015-09-28 06:21:00 +00:00
if [ -z $NOSIGN ]; then
echo "==> Signing..."
gpg --default-key 348FFC4C --detach-sig ./nomad_${VERSION}_SHA256SUMS
fi
2015-09-28 06:45:09 +00:00
popd