1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #425 from cpuguy83/backport_40169_windows_version_quad

[19.03] Windows: Only set VERSION_QUAD if unset
This commit is contained in:
Sebastiaan van Stijn 2020-01-16 21:06:58 +01:00 committed by GitHub
commit f6398c1f07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,9 @@ if [ "$(go env GOOS)" = "windows" ]; then
fi
# Generate a Windows file version of the form major,minor,patch,build (with any part optional)
VERSION_QUAD=$(echo -n $VERSION | sed -re 's/^([0-9.]*).*$/\1/' | tr . ,)
if [ ! -v VERSION_QUAD ]; then
VERSION_QUAD=$(echo -n $VERSION | sed -re 's/^([0-9.]*).*$/\1/' | tr . ,)
fi
# Pass version and commit information into the resource compiler
defs=