We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d7bcb commit 382100fCopy full SHA for 382100f
.github/workflows/examples-ci.yml
@@ -35,10 +35,10 @@ jobs:
35
run: |
36
if [ "${{ matrix.os }}" == "windows-latest" ]; then
37
Invoke-WebRequest -Uri "https://thor.robots.ox.ac.uk/~vgg/data/pets/images.tar.gz" -OutFile "images.tar.gz"
38
- Expand-Archive -Path "images.tar.gz" -DestinationPath "path/to/dataset"
+ Expand-Archive -Path "images.tar.gz"
39
else
40
wget "https://thor.robots.ox.ac.uk/~vgg/data/pets/images.tar.gz" -O "images.tar.gz"
41
- tar xf "images.tar.gz" -C "path/to/dataset"
+ tar xf "images.tar.gz""
42
fi
43
44
- name: Run example
0 commit comments