This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
core/update.sh

16 lines
214 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2023-10-16 11:56:18 +00:00
update() {
cd "$1" || (echo "No '$1' directory" && exit 1)
2023-10-16 11:56:18 +00:00
cargo update && cargo upgrade
[ "$1" = "." ] || cd ..
}
update .
2023-10-16 11:56:18 +00:00
git add Cargo.lock Cargo.toml flake.lock
2023-10-16 11:56:18 +00:00
# vim: ft=sh