Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions doc/dependency_decisions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@
:when: 2026-06-30 13:42:41.603483000 Z
- - :approve
- h2
- :who: njooma
:why: MIT
:versions:
- 4.4.0
:when: 2026-07-29 15:43:53.840640120 Z
- :who: sean
:why: MIT (declared via PEP 639 License-Expression, which license_finder cannot read)
:versions: []
:when: 2026-08-12 00:00:00.000000000 Z
4 changes: 2 additions & 2 deletions etc/postinstall.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -rf src/viam/rpc/libviam_rust_utils.* || true
if [ "$(uname)" == "Linux" ]; then
curl -sL -o src/viam/rpc/libviam_rust_utils.so https://github.com/viamrobotics/rust-utils/releases/latest/download/libviam_rust_utils-linux_$(uname -m).so
curl -fsSL --retry 5 --retry-all-errors --retry-delay 2 -o src/viam/rpc/libviam_rust_utils.so https://github.com/viamrobotics/rust-utils/releases/latest/download/libviam_rust_utils-linux_$(uname -m).so
elif [ "$(uname)" == "Darwin" ]; then
curl -sL -o src/viam/rpc/libviam_rust_utils.dylib https://github.com/viamrobotics/rust-utils/releases/latest/download/libviam_rust_utils-macosx_$(uname -m).dylib

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

curl was failing here often, simple retry loop resilience

curl -fsSL --retry 5 --retry-all-errors --retry-delay 2 -o src/viam/rpc/libviam_rust_utils.dylib https://github.com/viamrobotics/rust-utils/releases/latest/download/libviam_rust_utils-macosx_$(uname -m).dylib
fi
Loading