From 6479af4dc65ed6d1a4ed1eb10175bd793e2fb87e Mon Sep 17 00:00:00 2001 From: Shunsuke KITADA Date: Tue, 25 Jun 2024 19:23:41 +0900 Subject: [PATCH] update (#20) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c34ad57..9648e5f 100644 --- a/Makefile +++ b/Makefile @@ -3,19 +3,19 @@ DST_DIR := ./huggingface-repo .PHONY: check-vars check-vars: -ifndef ($(REPO_NAME),) +ifndef REPO_NAME $(error REPO_NAME is not set) endif -ifndef ($(DIR_NAME),) +ifndef DIR_NAME $(error DIR_NAME is not set) endif -ifndef ($(HF_USERNAME),) +ifndef HF_USERNAME $(error HF_USERNAME is not set) endif -ifndef ($(HF_EMAIL),) +ifndef HF_EMAIL $(error HF_EMAIL is not set) endif