mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
418d4a0ce0
* Add different digest types for different parts of the code * Add script to update dependencies * Remove an old changelog * `Inherent` → `PreRuntime`
10 lines
158 B
Bash
Executable File
10 lines
158 B
Bash
Executable File
#!/bin/sh --
|
|
set -eu
|
|
case $0 in
|
|
(/*) dir=${0%/*}/;;
|
|
(*/*) dir=./${0%/*};;
|
|
(*) dir=.;;
|
|
esac
|
|
|
|
find "$dir/.." -name Cargo.lock -execdir cargo update \;
|