From 49edd1a6dc813494fbce9fc73e4782fd7f8e8f61 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 24 Sep 2018 16:42:14 +0100 Subject: [PATCH 1/2] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e9eb5a1..8f5e9b3e 100644 --- a/Makefile +++ b/Makefile @@ -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 From 37b25d84228cd633858f2fd44a8197a953dd26de Mon Sep 17 00:00:00 2001 From: Lorenzo Alberto Maria Ambrosi Date: Tue, 18 Sep 2018 20:40:01 +0200 Subject: [PATCH 2/2] Change port so not to overlap with other builds Change-type: patch Signed-off-by: Lorenzo Alberto Maria Ambrosi Signed-off-by: Juan Cruz Viotti --- tests/spectron/runner.spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/spectron/runner.spec.js b/tests/spectron/runner.spec.js index b3f8ba78..7e475676 100644 --- a/tests/spectron/runner.spec.js +++ b/tests/spectron/runner.spec.js @@ -36,6 +36,7 @@ describe('Spectron', function () { before('app:start', function () { app = new spectron.Application({ path: entrypoint, + port: 9999, args: [ '.' ] })