Skip to content

Commit 3b2ac0c

Browse files
committed
pkg: Always add mandatory GITAMFLAGS
We really don't want a `make BOARD=some-board -C some/app` to ask for a password to unlock a GPG key. That is more than confusing on a desktop machine and a real pain on a headless device.
1 parent c699e2e commit 3b2ac0c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/pkg.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ ifeq ($(QUIET),1)
6363
endif
6464

6565
GITFLAGS ?= -c user.email=buildsystem@riot -c user.name="RIOT buildsystem"
66-
GITAMFLAGS ?= $(GIT_QUIET) --no-gpg-sign --ignore-whitespace --whitespace=nowarn
66+
GITAMFLAGS ?= $(GIT_QUIET)
67+
GITAMFLAGS += --no-gpg-sign --ignore-whitespace --whitespace=nowarn
6768

6869
.PHONY: all prepare clean distclean FORCE
6970

0 commit comments

Comments
 (0)