From ff0857afc49b44cbbbbf0aae8f58a0dfee95d1ec Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Thu, 14 Apr 2022 11:17:22 -0700 Subject: [PATCH] Update RELEASING docs git command for semconv gen (#2789) --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 063656fc72b..71e57625479 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -13,7 +13,7 @@ For example, ```sh export TAG="v1.7.0" # Change to the release version you are generating. export OTEL_SPEC_REPO="/absolute/path/to/opentelemetry-specification" -cd "$OTEL_SPEC_REPO" && git checkout "tags/$TAG" && cd - +git -C "$OTEL_SPEC_REPO" checkout "tags/$TAG" make semconv-generate # Uses the exported TAG and OTEL_SPEC_REPO. ```