mirror of
https://github.com/fallout2-ce/fallout2-ce.git
synced 2026-07-27 16:47:11 -07:00
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run --rm \
|
|
-v $(pwd):/app --workdir /app \
|
|
--user $(id -u):$(id -g) silkeh/clang:18 \
|
|
bash -c 'find src -type f -name \*.cc -o -name \*.h | xargs clang-format -i'
|
|
|