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