From 9433afd70c194575028d4dd3302e9d4433933699 Mon Sep 17 00:00:00 2001 From: Marius Date: Sun, 25 Aug 2019 19:58:24 +0200 Subject: [PATCH] docs: Use consistent style for flags Closes https://github.com/tus/tusd/issues/238 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3240056..b6a9619 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ snippet demonstrates how to start a tusd process which accepts tus uploads at `http://localhost:1080/files/` (notice the trailing slash) and stores them locally in the `./data` directory: ``` -$ tusd -dir ./data +$ tusd -dir=./data [tusd] Using './data' as directory storage. [tusd] Using 0.00MB as maximum size. [tusd] Using 0.0.0.0:1080 as address to listen. @@ -69,7 +69,7 @@ option): $ export AWS_ACCESS_KEY_ID=xxxxx $ export AWS_SECRET_ACCESS_KEY=xxxxx $ export AWS_REGION=eu-west-1 -$ tusd -s3-bucket my-test-bucket.com +$ tusd -s3-bucket=my-test-bucket.com [tusd] Using 's3://my-test-bucket.com' as S3 bucket for storage. [tusd] Using 0.00MB as maximum size. [tusd] Using 0.0.0.0:1080 as address to listen. @@ -84,7 +84,7 @@ enable this feature, supply the path to your account file containing the necessa ``` $ export GCS_SERVICE_ACCOUNT_FILE=./account.json -$ tusd -gcs-bucket my-test-bucket.com +$ tusd -gcs-bucket=my-test-bucket.com [tusd] Using 'gcs://my-test-bucket.com' as GCS bucket for storage. [tusd] Using 0.00MB as maximum size. [tusd] Using 0.0.0.0:1080 as address to listen.