File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,15 +131,15 @@ The following JSON and TOML are equivalent:
131
131
{
132
132
"files" : {
133
133
"https://example.com/data.csv" : " ./data.csv" ,
134
- "/code.py" : " ./subdir/code.py"
134
+ ". /code.py" : " ./subdir/code.py"
135
135
}
136
136
}
137
137
```
138
138
139
139
``` toml title="Fetch files onto the filesystem with TOML."
140
140
[files ]
141
141
"https://example.com/data.csv" = " ./data.csv"
142
- "/code.py" = " ./subdir/code.py"
142
+ ". /code.py" = " ./subdir/code.py"
143
143
```
144
144
145
145
If you make the target an empty string, the final "filename" part of the source
@@ -151,15 +151,15 @@ examples could be equivalently re-written as:
151
151
{
152
152
"files" : {
153
153
"https://example.com/data.csv" : " " ,
154
- ... etc ...
154
+ "./code.py" : " "
155
155
}
156
156
}
157
157
```
158
158
159
159
``` toml title="TOML implied filename in the root directory."
160
160
[files ]
161
161
"https://example.com/data.csv" = " "
162
- ... etc ...
162
+ "./code.py" = " "
163
163
```
164
164
165
165
If the source part of the configuration is either a ` .zip ` or ` .tar.gz ` file
You can’t perform that action at this time.
0 commit comments