We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de3892 commit ab1ac28Copy full SHA for ab1ac28
.github/workflows/ci.yml
@@ -83,12 +83,12 @@ jobs:
83
return 1
84
}
85
86
- # Build result: keep key-matched lines from local, others from remote
87
- for i in "${!LOCAL_LINES[@]}"; do
88
- if keep_line "${REMOTE_LINES[i]}"; then
89
- echo "${REMOTE_LINES[i]}"
90
- else
+ # keep key-matched lines from local, others from remote
+ for i in "${!REMOTE_LINES[@]}"; do
+ if keep_line "${LOCAL_LINES[i]}"; then
91
echo "${LOCAL_LINES[i]}"
+ else
+ echo "${REMOTE_LINES[i]}"
92
fi
93
done > "$local"
94
0 commit comments