Sha256: 6f8491eb4c80b40064a46e2df11c5f0e0685bbe5d40ec98594c9920b3b3f50f8
Contents?: true
Size: 617 Bytes
Versions: 54
Compression:
Stored size: 617 Bytes
Contents
#!/bin/bash set -e # 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 # Get the version from the command line VERSION=$1 if [ -z $VERSION ]; then echo "Please specify a version." exit 1 fi # Make the checksums pushd ./pkg/dist shasum -a256 * > ./vagrant_${VERSION}_SHA256SUMS if [ -z $NOSIGN ]; then echo "==> Signing..." gpg --default-key 348FFC4C --detach-sig ./vagrant_${VERSION}_SHA256SUMS fi popd
Version data entries
54 entries across 50 versions & 5 rubygems