From c44d7566d169c32a2a4389690c609dc3f7ec448e Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Fri, 23 Sep 2022 09:48:11 +0200 Subject: [PATCH] fixed typo --- ddns/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ddns/Makefile b/ddns/Makefile index 312bdb9..9ba7139 100644 --- a/ddns/Makefile +++ b/ddns/Makefile @@ -12,8 +12,8 @@ DOMAIN_ID = $(STATE_DIR)/domain_id.txt RECORD_ID = $(STATE_DIR)/record_id.txt UPDATE_RECORD = $(STATE_DIR)/updated_record -GOPASS=shell doas -u gopass gopass -LINODE_TOKEN = $($(GOPASS) linode.com/token) +GOPASS=doas -u gopass gopass +LINODE_TOKEN = $(shell $(GOPASS) linode.com/token) CURL = curl --silent AUTH_CURL = $(CURL) -H "Authorization: Bearer $(LINODE_TOKEN)"