From fe8db45abd1b0d5b39a95d1e5f1b8d494514a322 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Tue, 2 Nov 2021 15:04:55 -0400 Subject: [PATCH] Fix PROJECT_NAME variable PROJECT_NAME variable wasn't working. Fixed. --- .gitlab/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/Makefile b/.gitlab/Makefile index 3b79cc1..e44ab42 100644 --- a/.gitlab/Makefile +++ b/.gitlab/Makefile @@ -1,6 +1,6 @@ SHELL := /bin/bash -PROJECT_NAME ?= $(shell git config --local remote.origin.url|sed -n 's#.*/\([^.]*\)\.git#\1#p') +PROJECT_NAME ?= $(shell git config --local remote.origin.url | sed -n 's\#.*/\([^.]*\)\.git\#\1\#p') VERSION ?= $(shell cat VERSION) IMAGE ?= $(shell cat IMAGE):$(VERSION) IMAGE_LATEST ?= $(shell cat IMAGE):latest