8 lines
138 B
Bash
Executable File
8 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find . -name \*.nix -exec nix fmt {} \+
|
|
find . -name \*.sh -exec shfmt -w {} \+
|
|
shfmt -w deploy
|
|
shfmt -w mkboot
|
|
statix check .
|