File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -207,8 +207,8 @@ mkdir -p "$outsigdir"
207
207
exit 1
208
208
fi
209
209
210
- temp_codesigned =" $( mktemp) "
211
- trap ' rm -rf -- "$temp_codesigned "' EXIT
210
+ temp_all =" $( mktemp) "
211
+ trap ' rm -rf -- "$temp_all "' EXIT
212
212
213
213
if (( ${# codesigned_fragments[@]} )) ; then
214
214
# Note: all.SHA256SUMS attests to all of $sha256sum_fragments, but is
@@ -218,18 +218,18 @@ mkdir -p "$outsigdir"
218
218
| sort -k2 \
219
219
| sed ' s/$/\r/' \
220
220
| rfc4880_normalize_document \
221
- > " $temp_codesigned "
222
- if [ -e codesigned .SHA256SUMS ]; then
221
+ > " $temp_all "
222
+ if [ -e all .SHA256SUMS ]; then
223
223
# The SHA256SUMS already exists, make sure it's exactly what we
224
224
# expect, error out if not
225
- if diff -u all.SHA256SUMS " $temp_codesigned " ; then
225
+ if diff -u all.SHA256SUMS " $temp_all " ; then
226
226
echo " An all.SHA256SUMS file already exists for '${VERSION} ' and is up-to-date."
227
227
else
228
228
shasum_already_exists all.SHA256SUMS
229
229
exit 1
230
230
fi
231
231
else
232
- mv " $temp_codesigned " codesigned .SHA256SUMS
232
+ mv " $temp_all " all .SHA256SUMS
233
233
fi
234
234
else
235
235
# It is fine to have the codesigned outputs be missing (perhaps the
You can’t perform that action at this time.
0 commit comments