File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 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:
131131{
132132 "files" : {
133133 "https://example.com/data.csv" : " ./data.csv" ,
134- "/code.py" : " ./subdir/code.py"
134+ ". /code.py" : " ./subdir/code.py"
135135 }
136136}
137137```
138138
139139``` toml title="Fetch files onto the filesystem with TOML."
140140[files ]
141141"https://example.com/data.csv" = " ./data.csv"
142- "/code.py" = " ./subdir/code.py"
142+ ". /code.py" = " ./subdir/code.py"
143143```
144144
145145If 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:
151151{
152152 "files" : {
153153 "https://example.com/data.csv" : " " ,
154- ... etc ...
154+ "./code.py" : " "
155155 }
156156}
157157```
158158
159159``` toml title="TOML implied filename in the root directory."
160160[files ]
161161"https://example.com/data.csv" = " "
162- ... etc ...
162+ "./code.py" = " "
163163```
164164
165165If 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