From 7aabe4db571767824c48a2b49e6a1dec66e417a3 Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Fri, 3 Feb 2023 18:52:53 +0100 Subject: [PATCH] chore: init UID:GID in base Makefile --- build/base.Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/base.Makefile b/build/base.Makefile index 9968cbe4..1ea86d5e 100644 --- a/build/base.Makefile +++ b/build/base.Makefile @@ -3,4 +3,7 @@ .DEFAULT_GOAL := help -APP_NAME := $(shell basename $(dir $(abspath $(dir $$PWD/Makefile)))) \ No newline at end of file +APP_NAME := $(shell basename $(dir $(abspath $(dir $$PWD/Makefile)))) + +UID = $(shell id -u) +GID = $(shell id -g) \ No newline at end of file -- GitLab