Skip to content

Commit 9ff8254

Browse files
woody-appleksperling-applerestyled-commits
authored
Fixing this by ignoring shell harden (#29934)
Co-authored-by: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent e0870bc commit 9ff8254

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.restyled.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ exclude:
7676
- "examples/platform/nxp/k32w/k32w0/scripts/demo_generated_certs/**/*"
7777
- "integrations/cloudbuild/*.yaml" # uglier long command line content
7878
- "scripts/run_codegen_targets.sh" # shellharden breaks for loops over command outputs
79+
- "scripts/tagging/tag_new_release.sh" # shellharden breaks parameter passing
7980
- "src/darwin/Framework/CHIP/zap-generated/*" # already clang-formatted by our zap tooling
8081
- "zzz_generated/**/*" # already clang-formatted by our zap tooling
8182
- "src/controller/java/generated/java/**/*" # not formatted: generated files

scripts/tagging/tag_new_release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ echo "New release: $NEW_RELEASE_TAG"
5555
echo "Additional arguments: $ADDITIONAL_ARGS"
5656

5757
echo executing: gh release create "$NEW_RELEASE_TAG" --notes-start-tag "$CURRENT_RELEASE" "$@" "$ADDITIONAL_ARGS"
58-
gh release create "$NEW_RELEASE_TAG" "--notes-start-tag" "$CURRENT_RELEASE" "$@" "$ADDITIONAL_ARGS"
58+
gh release create $NEW_RELEASE_TAG "--notes-start-tag" $CURRENT_RELEASE $@ $ADDITIONAL_ARGS

0 commit comments

Comments
 (0)