Skip to content

fix(deps): update rust crate leptos_router to v0.8.14#78

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

fix(deps): update rust crate leptos_router to v0.8.14#78
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/leptos_router-0.x

fix(deps): update rust crate leptos_router to v0.8.14

e36c190
Select commit
Loading
Failed to load commit list.
Garnix CI / check shellcheck-check [x86_64-linux] succeeded Jun 25, 2026 in 17m 0s

check shellcheck-check [x86_64-linux]

check shellcheck-check [x86_64-linux] succeeded

Details

Last 100 lines of logs:

shellcheck-check>                                                                                                          ^---^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> rsync -rvh --progress --ignore-existing --no-perms --no-owner --no-group --exclude='Android' "${SOURCE}"/ "${DEST}"/
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./backup-phone.sh line 28:
shellcheck-check> echo "Backup complete. Files copied to $DEST"
shellcheck-check>                                        ^---^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> echo "Backup complete. Files copied to ${DEST}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./format-nix.sh line 3:
shellcheck-check> find . -name '*.nix' | xargs nixfmt -s -v
shellcheck-check> ^------------------^ SC2038 (warning): Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames.
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 ./inspiration/home/nix-inspect-path.sh line 5:
shellcheck-check>   "$(printf "%s\n" "${paths[@]}" | grep '/nix/store' | grep -v -e '\-man' -e '\-terminfo' | perl -pe 's:^/nix/store/\w{32}-([^/]*)/bin$:\1:' | xargs)"
shellcheck-check>                                    ^---------------^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check>                                                        ^-- SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check>                                                                                             ^-- SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
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 ./inspiration/home/nix-inspect-path.sh line 8:
shellcheck-check>   to_remove_full="$(printf "%s\n" "${programs[@]}" | grep "$to_remove")"
shellcheck-check>                                                            ^--------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   to_remove_full="$(printf "%s\n" "${programs[@]}" | grep "${to_remove}")"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/nix-inspect-path.sh line 9:
shellcheck-check>   programs=("${programs[@]/$to_remove_full/}")
shellcheck-check>                            ^-------------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   programs=("${programs[@]/${to_remove_full}/}")
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/juju-prompt.sh line 2:
shellcheck-check> controller="${JUJU_CONTROLLER:-$(echo "$whoami" | grep Controller | tr -s ' ' | cut -d ' ' -f2)}"
shellcheck-check>                                        ^-----^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                                                   ^-------------^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check>                                                                     ^-------^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> controller="${JUJU_CONTROLLER:-$(echo "${whoami}" | grep Controller | tr -s ' ' | cut -d ' ' -f2)}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/juju-prompt.sh line 3:
shellcheck-check> model="${JUJU_MODEL:-$(echo "$whoami" | grep Model | tr -s ' ' | cut -d ' ' -f2)}"
shellcheck-check>                              ^-----^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check>                                         ^--------^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check>                                                      ^-------^ SC2312 (info): Consider invoking this command separately to avoid masking its return value (or use '|| true' to ignore).
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> model="${JUJU_MODEL:-$(echo "${whoami}" | grep Model | tr -s ' ' | cut -d ' ' -f2)}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/juju-prompt.sh line 4:
shellcheck-check> if [ -z "$model" ]; then
shellcheck-check>    ^-------------^ SC2292 (style): Prefer [[ ]] over [ ] for tests in Bash/Ksh/Busybox.
shellcheck-check>          ^----^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check> if [[ -z "${model}" ]]; then
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/juju-prompt.sh line 5:
shellcheck-check>   echo "$controller"
shellcheck-check>         ^---------^ SC2250 (style): Prefer putting braces around variable references even when not strictly required.
shellcheck-check> 
shellcheck-check> Did you mean:
shellcheck-check>   echo "${controller}"
shellcheck-check> 
shellcheck-check> 
shellcheck-check> In ./inspiration/home/juju-prompt.sh line 7:
shellcheck-check>   echo "$model ($controller)"
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>   echo "${model} (${controller})"
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 29 seconds
shellcheck-check> Running phase: installPhase
shellcheck-check> Running phase: fixupPhase
shellcheck-check> shrinking RPATHs of ELF executables and libraries in /nix/store/h38xcisvbcva4swlh6pjs68awyciiz6x-shellcheck-check
shellcheck-check> checking for references to /build/ in /nix/store/h38xcisvbcva4swlh6pjs68awyciiz6x-shellcheck-check...
shellcheck-check> patching script interpreter paths in /nix/store/h38xcisvbcva4swlh6pjs68awyciiz6x-shellcheck-check
Uploaded /nix/store/h38xcisvbcva4swlh6pjs68awyciiz6x-shellcheck-check to the garnix binary cache.