Quote the $(date) in the yaml example for consistency with pyproject.toml

This commit is contained in:
Daniele Varrazzo
2021-07-19 17:16:23 +02:00
parent 976173f6e1
commit 413c9f30dd
+2 -2
View File
@@ -504,13 +504,13 @@ Platform-specific environment variables are also available:<br/>
PATH="C:\\Program Files\\PostgreSQL\\13\\bin;$PATH"
# Set BUILD_TIME to the output of the `date` command
CIBW_ENVIRONMENT: BUILD_TIME=$(date)
CIBW_ENVIRONMENT: BUILD_TIME="$(date)"
# Supply options to `pip` to affect how it downloads dependencies
CIBW_ENVIRONMENT: PIP_EXTRA_INDEX_URL=https://pypi.myorg.com/simple
# Set two flags on linux only
CIBW_ENVIRONMENT_LINUX: BUILD_TIME=$(date) SAMPLE_TEXT="sample text"
CIBW_ENVIRONMENT_LINUX: BUILD_TIME="$(date)" SAMPLE_TEXT="sample text"
```
Separate multiple values with a space.