docs(contrib): update

This commit is contained in:
2024-12-01 06:01:06 -07:00
parent 16288251a9
commit 2d1238be73

View File

@@ -256,9 +256,9 @@ At the top of any new file introduced, please add the following header:
When calling environment variables, you should use `UPPERCASE`: When calling environment variables, you should use `UPPERCASE`:
```bash ```bash
ARG_CRON_TIME=$(echo ${CRON_TIME}) arg_cron=$(echo ${CRON_TIME})
if [ -z "${ARG_CRON_TIME}" ]; then if [ -z "${arg_cron}" ]; then
ARG_CRON_TIME="0/60 * * * *" arg_cron="0/60 * * * *"
fi fi
``` ```