You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: trying to clarify usage of remotly used env vars (#30)
This mini-PR tries to emphasize the need to escape remote env variables.
It addresses #28 . Whether it actually does the trick remains to be seen
- when my cluster is accessible again.
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **Documentation**
- Refined explanatory text to improve clarity.
- Updated configuration examples to ensure proper escaping of
environment variables for accurate guidance.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
Copy file name to clipboardExpand all lines: docs/further.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,12 @@ shared-fs-usage:
18
18
- source-cache
19
19
```
20
20
21
-
If the shared scratch is e.g. specific for each job (e.g. controlled by a ``$JOBID``), one can define a job-specific local storage prefix like this
21
+
If the shared scratch is e.g. specific for each job (e.g. controlled by a ``$JOBID``). Environment variables defined only on remote instances might need to be escaped (with a `\`) to prevent premature evaluation. One can define a job-specific local storage prefix like this
0 commit comments