From 5058fc2a6e5ebe42e29da8c89e96bdfdad285bba Mon Sep 17 00:00:00 2001 From: Alexander Robson <58195221+aj-robson@users.noreply.github.com> Date: Fri, 5 May 2023 15:05:39 +0100 Subject: [PATCH] chore: Update git ls-files cmd with missing arg (#832) --- variables.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.mk b/variables.mk index 9c987952..b6a6a771 100644 --- a/variables.mk +++ b/variables.mk @@ -28,7 +28,7 @@ VERSION := $(shell cat VERSION.txt) GITCOMMIT := $(shell git rev-parse --short HEAD) GITBRANCH := $(shell git rev-parse --abbrev-ref HEAD) GITUNTRACKEDCHANGES := $(shell git status --porcelain --untracked-files=no) -GITIGNOREDBUTTRACKEDCHANGES := $(shell git ls-files -i --exclude-standard) +GITIGNOREDBUTTRACKEDCHANGES := $(shell git ls-files -i -c --exclude-standard) ifneq ($(GITUNTRACKEDCHANGES),) GITCOMMIT := $(GITCOMMIT)-dirty endif