mirror of
https://github.com/denisidoro/navi
synced 2024-11-28 22:40:19 +00:00
8 lines
224 B
Bash
Executable file
8 lines
224 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cargo +nightly fix --clippy -Z unstable-options 2> /dev/null || true
|
|
cargo fix 2> /dev/null || true
|
|
cargo fmt 2> /dev/null || true
|