niyumard 3b691a58c4 Revert "/bin/bash -> /usr/bin/env bash"
This reverts commit 76349f8350d7551e70da8533bcd7daffcad9795a.
2023-04-19 18:25:37 +03:30

10 lines
110 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
paths=$(ls examples/*/*.go)
for path in $paths; do
gofmt -w=true $path
done