Make docker scripts use get-version (#54)
Make docker scripts use get-version
This commit is contained in:
commit
97b6a35b38
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -eu
|
||||
|
||||
version=$( git describe --match v* --abbrev=0 )
|
||||
version=$( tools/get-version )
|
||||
imagename=stowtest
|
||||
image=$imagename:$version
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue