mirror of
https://github.com/denisidoro/navi.git
synced 2026-07-24 10:37:26 +00:00
8 lines
205 B
Bash
Executable file
8 lines
205 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
find . -iname '*.sh' | xargs -I% dot code beautify %
|
|
dot code beautify "${SCRIPT_DIR}/navi"
|