mirror of
https://github.com/grumpycoders/pcsx-redux.git
synced 2025-04-02 10:41:54 -04:00
6 lines
168 B
Bash
Executable file
6 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd $(dirname $0)/../..
|
|
|
|
docker build -t code-format tools/code-format
|
|
docker run --rm=true -v "$(pwd)":/repository --user "$(id -u):$(id -g)" -t code-format
|