From b5454c19b82e2b6c9e0f57e44aaa754e90fced02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Ho=C3=9F?= Date: Sat, 25 Jun 2016 11:36:13 +0200 Subject: [PATCH] use USERID instead of UID MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Sebastian Hoß --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fbd3467..3027661 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ SHELL = /bin/sh TIMESTAMPED_VERSION := $(shell /bin/date "+%Y.%m.%d-%H%M%S") CURRENT_DATE := $(shell /bin/date "+%Y-%m-%d") USERNAME := $(shell id -u -n) +USERID := $(shell id -u) GREEN := $(shell tput -Txterm setaf 2) WHITE := $(shell tput -Txterm setaf 7) YELLOW := $(shell tput -Txterm setaf 3) @@ -92,7 +93,7 @@ sonar-analysis: ##@sebhoss Perform Sonarqube analysis docker-verify: ##@docker Verify project in pre-defined build environment docker-compose \ -f build/docker/build-environment.yml \ - run --rm --user=$(UID) build + run --rm --user=$(USERID) build .PHONY: sign-waiver sign-waiver: ##@contributing Sign the WAIVER -- 2.11.4.GIT