We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8156c5c commit 4f40d92Copy full SHA for 4f40d92
2 files changed
.github/workflows/ci.yml
@@ -38,6 +38,7 @@ jobs:
38
continue-on-error: true
39
run: |
40
set -o pipefail
41
+ : > real-kernel.log
42
sudo ./tests/integration/test_real_kernel.sh | tee real-kernel.log
43
44
- name: Upload real-kernel log
lib/updater/updater.sh
@@ -282,7 +282,7 @@ updater_find_archive_member() {
282
local candidate relative_path
283
284
while IFS= read -r candidate; do
285
- relative_path="${candidate#${unpack_dir}/}"
+ relative_path="${candidate#"${unpack_dir}"/}"
286
if [[ -z "${member_regex}" || "${relative_path}" =~ ${member_regex} ]]; then
287
printf '%s\n' "${candidate}"
288
return 0
0 commit comments