[.NET NUGET] DON'T SET SUFFIX FOR RELEASES (#548)
Previously "-None" was set as version suffix for release packages.
This commit is contained in:
parent
e8795ff105
commit
70bffa111a
@ -238,7 +238,7 @@ def main(args):
|
|||||||
'-v $(abspath recipes):/io/recipes ' +
|
'-v $(abspath recipes):/io/recipes ' +
|
||||||
'-v $(abspath $(dir $<)):/io/input ' +
|
'-v $(abspath $(dir $<)):/io/input ' +
|
||||||
'-v $(abspath $(dir $@)):/io/output ' +
|
'-v $(abspath $(dir $@)):/io/output ' +
|
||||||
'{0} sh -x -e /io/recipes/{1} "{2}"\n'.format('microsoft/dotnet:latest', 'pack', version.suffix))
|
'{0} sh -x -e /io/recipes/{1} "{2}"\n'.format('microsoft/dotnet:latest', 'pack', version.suffix if version.suffix is not None else ''))
|
||||||
|
|
||||||
print('prepared', MAKEFILE, 'to make', version.pkgfile)
|
print('prepared', MAKEFILE, 'to make', version.pkgfile)
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user