mirror of
https://github.com/denisidoro/navi.git
synced 2026-01-23 10:16:08 +00:00
26 lines
677 B
Bash
Executable file
26 lines
677 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
|
source "${NAVI_HOME}/scripts/install"
|
|
|
|
cd "$NAVI_HOME"
|
|
|
|
header "Cargo nighly fix..."
|
|
cargo +nightly clippy --fix -Z unstable-options || true
|
|
|
|
header "Cargo fix..."
|
|
cargo fix || true
|
|
|
|
header "Cargo fmt..."
|
|
cargo fmt || true
|
|
|
|
header "dot code beautify..."
|
|
find scripts -type f | xargs -I% dot code beautify % || true
|
|
dot code beautify "${NAVI_HOME}/alfred/alfred.bash" || true
|
|
dot code beautify "${NAVI_HOME}/alfred/alfred2.bash" || true
|
|
dot code beautify "${NAVI_HOME}/tests/core.bash" || true
|
|
dot code beautify "${NAVI_HOME}/tests/run" || true
|
|
|
|
header "clippy..."
|
|
cargo clippy || true
|