Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Commit 379ffae

Browse files
authored
Merge pull request #143 from lmodel/quotes
fix(makefile): remove unsupported quotes
2 parents 339a86e + 0561cfe commit 379ffae

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

{{cookiecutter.project_name}}/config.public.mk

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66

77
###### schema definition variables, used by makefile
88

9-
# Note: makefile variables should not be quoted, as makefile handles quoting differently than bash
10-
LINKML_SCHEMA_NAME="{{cookiecutter.__project_slug}}"
11-
LINKML_SCHEMA_AUTHOR="{{cookiecutter.__author}}"
12-
LINKML_SCHEMA_DESCRIPTION="{{cookiecutter.project_description}}"
13-
LINKML_SCHEMA_SOURCE_PATH="{{cookiecutter.__source_path}}"
14-
LINKML_SCHEMA_GOOGLE_SHEET_MODULE="{{cookiecutter.__google_sheet_module}}"
15-
LINKML_SCHEMA_GOOGLE_SHEET_ID="{{cookiecutter.google_sheet_id}}"
16-
LINKML_SCHEMA_GOOGLE_SHEET_TABS="{{cookiecutter.google_sheet_tabs}}"
9+
# Note: makefile variables should not be quoted
10+
11+
LINKML_SCHEMA_NAME={{cookiecutter.__project_slug}}
12+
LINKML_SCHEMA_AUTHOR={{cookiecutter.__author}}
13+
LINKML_SCHEMA_DESCRIPTION={{cookiecutter.project_description}}
14+
LINKML_SCHEMA_SOURCE_PATH={{cookiecutter.__source_path}}
15+
LINKML_SCHEMA_GOOGLE_SHEET_MODULE={{cookiecutter.__google_sheet_module}}
16+
LINKML_SCHEMA_GOOGLE_SHEET_ID={{cookiecutter.google_sheet_id}}
17+
LINKML_SCHEMA_GOOGLE_SHEET_TABS={{cookiecutter.google_sheet_tabs}}
1718
LINKML_USE_SCHEMASHEETS={{cookiecutter.use_schemasheets}}
1819

1920
###### linkml generator variables, used by makefile

0 commit comments

Comments
 (0)