We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db37ef9 commit 390f3a5Copy full SHA for 390f3a5
scripts/sync_pop_candidate.sh
@@ -5,6 +5,10 @@ cph=$(git rev-list -n 1 CHERRY_PICK_HEAD 2> /dev/null)
5
set -o errexit
6
set -o pipefail
7
8
+ROOT_DIR=$(dirname "${BASH_SOURCE[@]}")/..
9
+# shellcheck disable=SC1091
10
+source "${ROOT_DIR}/scripts/common.sh"
11
+
12
pop_all=true
13
14
set +u
@@ -56,7 +60,7 @@ function pop() {
56
60
# 4. Remove from cherrypick set
57
61
make vendor
58
62
make manifests
59
- git add .
63
+ git add "${subtree_dir}" "${KNOWN_GENERATED_PATHS[@]}"
64
git status
65
git commit --amend --allow-empty --no-edit --trailer "Upstream-repository: ${remote}" --trailer "Upstream-commit: ${rc}"
66
0 commit comments