commit | f3e2094926af7c91c3a45b35ed93f154fd8e7a8b | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Wed Jan 01 23:44:46 2025 -0800 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Jan 01 23:44:46 2025 -0800 |
tree | 345e720426f0e8c44b632975988d44fd16c4e492 | |
parent | 3f5a3bb127acde5bb16ed2a1c36c22d121a116ae [diff] | |
parent | c27a993249bbd3f1d752c9099b3636527a98b1ef [diff] |
Merge "Remove dangling -- after parsing arguments" into main am: c27a993249 Original change: https://android-review.googlesource.com/c/platform/build/+/3434640 Change-Id: I890a9ed688af72879fc7e1c065845bc667fa02e4 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/tools/finalization/command-line-options.sh b/tools/finalization/command-line-options.sh index d9397c2..3a1e049 100644 --- a/tools/finalization/command-line-options.sh +++ b/tools/finalization/command-line-options.sh
@@ -3,6 +3,7 @@ while true; do case "$1" in --dry-run) repo_upload_dry_run_arg="--dry-run"; repo_branch="finalization-dry-run"; shift ;; + --) shift; break;; *) break esac done