From fd13b3a72c0d2a19c480c9954c3c9dba7399ea51 Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Tue, 6 Apr 2021 14:43:00 -0700 Subject: [PATCH] Fix carve documentation flag order (#605) Update the docs to be consistent with stricter flag parsing in 3.10. Fixes #602 --- docs/1-Using-Fleet/2-fleetctl-CLI.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/1-Using-Fleet/2-fleetctl-CLI.md b/docs/1-Using-Fleet/2-fleetctl-CLI.md index 1d7ae64cd4..755f1c218f 100644 --- a/docs/1-Using-Fleet/2-fleetctl-CLI.md +++ b/docs/1-Using-Fleet/2-fleetctl-CLI.md @@ -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