mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
4e5798852f
Previously, these scripts wouldn't work on exotic systems such as NixOS. ``` fd '\.sh$' -t f --exec sed -i 's@#!/bin/bash@#!/usr/bin/env bash@' ```
14 lines
151 B
Bash
Executable file
14 lines
151 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pushd ../
|
|
|
|
# Check unused deps
|
|
cargo udeps --all-targets
|
|
|
|
# Upgrade deps
|
|
cargo upgrade --workspace
|
|
|
|
# Run check
|
|
cargo check
|
|
|
|
popd
|