mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-19 17:26:34 +00:00
Makefile: Don't use tilde in rpm versions
The tilde is not a valid version character in RPM packages, according to the RPM source code. Change-type: patch Signed-off-by: Juan Cruz Viotti <juan@resin.io>
This commit is contained in:
parent
a338c6e60a
commit
49edd1a6dc
2
Makefile
2
Makefile
@ -131,7 +131,7 @@ endif
|
|||||||
|
|
||||||
APPLICATION_NAME_LOWERCASE = $(shell echo $(APPLICATION_NAME) | tr A-Z a-z)
|
APPLICATION_NAME_LOWERCASE = $(shell echo $(APPLICATION_NAME) | tr A-Z a-z)
|
||||||
APPLICATION_VERSION_DEBIAN = $(shell echo $(APPLICATION_VERSION) | tr "-" "~")
|
APPLICATION_VERSION_DEBIAN = $(shell echo $(APPLICATION_VERSION) | tr "-" "~")
|
||||||
APPLICATION_VERSION_REDHAT = $(shell echo $(APPLICATION_VERSION) | tr "-" "~")
|
APPLICATION_VERSION_REDHAT = $(APPLICATION_VERSION)
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
# ---------------------------------------------------------------------
|
||||||
# Release type
|
# Release type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user