filebrowser/backend/run_fmt.sh

3 lines
69 B
Bash
Executable File

#!/bin/bash
for i in $(find $(pwd) -name '*.go');do gofmt -w $i;done