mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +00:00
9 lines
130 B
Bash
9 lines
130 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
apt-get update
|
||
|
apt-get install -y clang-format-6.0
|
||
|
|
||
|
# Run clang-format
|
||
|
cd /yuzu
|
||
|
./.travis/clang-format/script.sh
|