Commit 4e153d51 authored by João Pereira's avatar João Pereira 🔴
Browse files

fix(makefile): replace egrep with grep -E

parent ba0c3c91
Loading
Loading
Loading
Loading
+1 −1
Changes for Makefile: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ release: release-prep
	@echo "This will generate and push a changelog update and a new tag, are you sure? [y/N] " && read ans && [ $${ans:-N} = y ]
	@npx semantic-release --no-ci

export PG_VERSIONS=$(shell egrep -E 'PG_(PREV|CURR|NEXT)_VERSION: ' .gitlab-ci.yml | cut -d\" -f 2)
export PG_VERSIONS=$(shell grep -E 'PG_(PREV|CURR|NEXT)_VERSION: ' .gitlab-ci.yml | cut -d\" -f 2)

.PHONY: rebuild-ci-container-images
rebuild-ci-container-images: