mirror of
https://github.com/denisidoro/navi.git
synced 2026-07-19 09:34:33 +00:00
13 lines
432 B
Bash
Executable file
13 lines
432 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
# please refer to https://github.com/denisidoro/dotfiles/blob/master/scripts/code/beautify
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
find . -iname '*.sh' | xargs -I% dot code beautify %
|
|
find scripts/* | xargs -I% dot code beautify %
|
|
find shell/* | xargs -I% dot code beautify %
|
|
dot code beautify "${SCRIPT_DIR}/test/run"
|
|
dot code beautify "${SCRIPT_DIR}/navi"
|