From 7345a80f55a78b858c447734e58f6750b2d93378 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Mon, 29 Jan 2024 19:49:03 -0800 Subject: [PATCH] docs: fixes example command --- tools/updater/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/updater/README.md b/tools/updater/README.md index a5af43431..5c0ed24c3 100644 --- a/tools/updater/README.md +++ b/tools/updater/README.md @@ -172,7 +172,7 @@ overrides: When the CI/CD is performing an update, it can pass the value for this template literal like so (assuming GitHub Actions): ```terminal -$ updater scan . | updater update deployments -e dev -t "GIT_SHA=${{ github.sha }}" /path/to/deployment-repo/bundles +$ updater scan -t "GIT_SHA=${{ github.sha }}" . | updater update deployments -e dev /path/to/deployment-repo/bundles # Empty output ```