From 4822c15d4a8bc52af7213a3bb09f6d4f514eabd1 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 31 Aug 2026 12:56:44 -0500 Subject: [PATCH] Guard against task IDs starting with a hyphen --- docs/command-line-tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/command-line-tutorial.md b/docs/command-line-tutorial.md index f1e0b90..227b881 100644 --- a/docs/command-line-tutorial.md +++ b/docs/command-line-tutorial.md @@ -299,7 +299,7 @@ Upload a random set of 150 measurements. ```sh for i in {1..150}; do measurement=$(( $RANDOM % 10 )) - divviup dap-client upload --task-id $TASK_ID --measurement $measurement; + divviup dap-client upload --task-id=$TASK_ID --measurement $measurement; done ``` @@ -314,7 +314,7 @@ collection results: ```sh divviup dap-client collect \ - --task-id $TASK_ID \ + --task-id=$TASK_ID \ --collector-credential-file $COLLECTOR_CREDENTIAL_PATH \ --current-batch ```