12 lines
168 B
Bash
Executable File
12 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
find . -name \*.nix -exec nix fmt {} \+
|
|
find . -name \*.sh -exec shfmt -w {} \+
|
|
|
|
deadnix -f .
|
|
shfmt -w bin/deploy
|
|
shfmt -w bin/mkboot
|
|
statix check .
|