Fix carve documentation flag order (#605)

Update the docs to be consistent with stricter flag parsing in 3.10.

Fixes #602
This commit is contained in:
Zach Wasserman 2021-04-06 14:43:00 -07:00 committed by GitHub
parent 90e82a62b3
commit fd13b3a72c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -632,13 +632,13 @@ Contents of carves are returned as .tar archives, and compressed if that option
To download the contents of a carve with ID 3, use
```
fleetctl get carve 3 --outfile carve.tar
fleetctl get carve --outfile carve.tar 3
```
It can also be useful to pipe the results directly into the tar command for unarchiving:
```
fleetctl get carve 3 --stdout | tar -x
fleetctl get carve --stdout 3 | tar -x
```
#### Expiration