mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 10:10:17 +00:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$(dirname "${0}")/.." || exit 1
|
|
|
|
. "hack/common.sh"
|
|
|
|
cargo clippy --workspace --fix --allow-dirty --allow-staged --target "${HOST_ARCH}-unknown-uefi"
|
|
./hack/format.sh
|