mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-28 05:36:34 +00:00
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:
commit
6b7be7a82d
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
|
||||||
|
@ -36,6 +36,7 @@ describe('Spectron', function () {
|
|||||||
before('app:start', function () {
|
before('app:start', function () {
|
||||||
app = new spectron.Application({
|
app = new spectron.Application({
|
||||||
path: entrypoint,
|
path: entrypoint,
|
||||||
|
port: 9999,
|
||||||
args: [ '.' ]
|
args: [ '.' ]
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user