Skip to content

fix(deps): update rust crate globwalk to 0.9.0#70

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/globwalk-0.x
Open

fix(deps): update rust crate globwalk to 0.9.0#70
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/globwalk-0.x

fix(deps): update rust crate globwalk to 0.9.0

8d79892
Select commit
Loading
Failed to load commit list.
Garnix CI / check shellcheck-check [x86_64-linux] succeeded May 18, 2026 in 16m 55s

check shellcheck-check [x86_64-linux]

check shellcheck-check [x86_64-linux] succeeded

Details

Last 100 lines of logs:

shellcheck-check>       host_bin="$platform_path/target/release/host"
shellcheck-check>                 ^------------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>       host_bin="${platform_path}/target/release/host"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 139:
shellcheck-check>   elif [[ $platform_path == *go-* ]] || [[ $platform_path == *-go ]]; then
shellcheck-check>           ^------------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                                            ^------------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   elif [[ ${platform_path} == *go-* ]] || [[ ${platform_path} == *-go ]]; then
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 141:
shellcheck-check>     rm -f "$host_bin" 2>/dev/null || true
shellcheck-check>            ^-------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>     rm -f "${host_bin}" 2>/dev/null || true
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 146:
shellcheck-check>     go build -buildmode=pie "${ldflags[@]}" -o "$(basename "$host_bin")"
shellcheck-check>                                                             ^-------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>     go build -buildmode=pie "${ldflags[@]}" -o "$(basename "${host_bin}")"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 150:
shellcheck-check>   host_main="$platform_roc_path/main.roc"
shellcheck-check>              ^----------------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   host_main="${platform_roc_path}/main.roc"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 152:
shellcheck-check>   roc preprocess-host "$host_bin" "$host_main" "$app_lib"
shellcheck-check>                        ^-------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                                    ^--------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                                                 ^------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   roc preprocess-host "${host_bin}" "${host_main}" "${app_lib}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/build.sh line 155:
shellcheck-check> ((skip_run)) || roc $linker "$app_main"
shellcheck-check>                     ^-----^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                              ^-------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> ((skip_run)) || roc ${linker} "${app_main}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/hello.sh line 4:
shellcheck-check> . ./build hello "${@}"
shellcheck-check>   ^-----^ SC1091 (info): Not following: ./build: openBinaryFile: does not exist (No such file or directory)
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/roc/lib/display.sh line 4:
shellcheck-check> . ./build display "${@}"
shellcheck-check>   ^-----^ SC1091 (info): Not following: ./build: openBinaryFile: does not exist (No such file or directory)
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/web-gen-api/db-init-create.sh line 4:
shellcheck-check> pg_ctl -D .tmp/db/postgres -l logfile -o "--unix_socket_directories='$PWD/.tmp/db/unix_socket_directories'" start
shellcheck-check>                                                                      ^--^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> pg_ctl -D .tmp/db/postgres -l logfile -o "--unix_socket_directories='${PWD}/.tmp/db/unix_socket_directories'" start
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/web-gen-api/db-init-create.sh line 5:
shellcheck-check> createdb -h "$(pwd)/.tmp/db/unix_socket_directories" db
shellcheck-check>                ^-^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./pkgs/web-gen-api/db-start.sh line 3:
shellcheck-check> pg_ctl -D .tmp/db -l logfile -o "--unix_socket_directories='$PWD'" start
shellcheck-check>                                                             ^--^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> pg_ctl -D .tmp/db -l logfile -o "--unix_socket_directories='${PWD}'" start
shellcheck-check> 
shellcheck-check> For more information:
shellcheck-check>   https://www.shellcheck.net/wiki/SC1054 -- You need a space after the '{'.
shellcheck-check>   https://www.shellcheck.net/wiki/SC1055 -- You need at least one command her...
shellcheck-check>   https://www.shellcheck.net/wiki/SC2068 -- Double quote array expansions to ...
shellcheck-check> buildPhase completed in 15 minutes 47 seconds
shellcheck-check> Running phase: installPhase
shellcheck-check> Running phase: fixupPhase
shellcheck-check> shrinking RPATHs of ELF executables and libraries in /nix/store/r0arbqlza0a9x4c8p1kh91vqcv571smw-shellcheck-check
shellcheck-check> checking for references to /build/ in /nix/store/r0arbqlza0a9x4c8p1kh91vqcv571smw-shellcheck-check...
shellcheck-check> patching script interpreter paths in /nix/store/r0arbqlza0a9x4c8p1kh91vqcv571smw-shellcheck-check
Uploaded /nix/store/r0arbqlza0a9x4c8p1kh91vqcv571smw-shellcheck-check to the garnix binary cache.