Make docker scripts use get-version (#54)

Make docker scripts use get-version
This commit is contained in:
Adam Spiers 2019-06-28 17:14:23 +01:00 committed by GitHub
commit 97b6a35b38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
set -eu
version=$( git describe --match v* --abbrev=0 )
version=$( tools/get-version )
imagename=stowtest
image=$imagename:$version

View file

@ -3,6 +3,6 @@
# Test Stow across multiple Perl versions, by executing the
# Docker image built via build-docker.sh.
version=$( git describe --match v* --abbrev=0 )
version=$( tools/get-version )
docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest:$version