mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
7 lines
142 B
Bash
Executable File
7 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$(dirname "${0}")/.."
|
|
cargo clippy --target x86_64-unknown-linux-gnu --fix --allow-dirty --allow-staged
|
|
cargo fmt --all
|