mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 05:22:27 +03:00
13 lines
152 B
Plaintext
13 lines
152 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Usage: fmt-nix
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
cd "${0%/*}/.."
|
||
|
|
||
|
echo "Formatting Nix"
|
||
|
|
||
|
find . -type f -name '*.nix' \
|
||
|
-exec nixfmt {} \+
|