File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 build :
1111 name : Build
12- runs-on : ubuntu-20 .04
12+ runs-on : ubuntu-22 .04
1313 env :
1414 IMAGE_NAME : whatwg/html-build
1515 steps :
1616 - name : Checkout whatwg/html-build
17- uses : actions/checkout@v2
17+ uses : actions/checkout@v3
1818 with :
1919 fetch-depth : 0
2020 - name : Shellcheck
2424 - name : Docker build
2525 run : ci-build/docker-build.sh
2626 - name : Checkout whatwg/html
27- uses : actions/checkout@v2
27+ uses : actions/checkout@v3
2828 with :
2929 repository : whatwg/html
3030 path : html
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ function relativePath {
403403 local commonPart=$source
404404 local result=" "
405405
406- while [[ " ${target# $commonPart } " == " ${target} " ]]; do
406+ while [[ " ${target# " $commonPart " } " == " ${target} " ]]; do
407407 # no match, means that candidate common part is not correct
408408 # go up one level (reduce common part)
409409 commonPart=$( dirname " $commonPart " )
@@ -422,7 +422,7 @@ function relativePath {
422422
423423 # since we now have identified the common part,
424424 # compute the non-common part
425- local forwardPart=" ${target# $commonPart } "
425+ local forwardPart=" ${target# " $commonPart " } "
426426
427427 # and now stick all parts together
428428 if [[ $result != " " ]] && [[ $forwardPart != " " ]]; then
You can’t perform that action at this time.
0 commit comments