Merge pull request #2489 from resin-io/dont-use-tilde-in-rpm

Makefile: Don't use tilde in rpm versions
This commit is contained in:
Lorenzo Alberto Maria Ambrosi 2018-09-25 17:27:25 +02:00 committed by GitHub
commit 6b7be7a82d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,7 @@ endif
APPLICATION_NAME_LOWERCASE = $(shell echo $(APPLICATION_NAME) | tr A-Z a-z)
APPLICATION_VERSION_DEBIAN = $(shell echo $(APPLICATION_VERSION) | tr "-" "~")
APPLICATION_VERSION_REDHAT = $(shell echo $(APPLICATION_VERSION) | tr "-" "~")
APPLICATION_VERSION_REDHAT = $(APPLICATION_VERSION)
# ---------------------------------------------------------------------
# Release type

View File

@ -36,6 +36,7 @@ describe('Spectron', function () {
before('app:start', function () {
app = new spectron.Application({
path: entrypoint,
port: 9999,
args: [ '.' ]
})