Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit adce466

Browse files
committedJan 10, 2025
Quote values in dotenv file
1 parent 10d3e9f commit adce466

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
###### schema definition variables, used by makefile
88

99
# 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}}
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}}"
1717

1818
###### linkml generator variables, used by makefile
1919

0 commit comments

Comments
 (0)
Please sign in to comment.