mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
9 lines
217 B
Bash
Executable File
9 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "-u" ]; then
|
|
shift
|
|
docker pull toxchat/haskell:hs-cimple
|
|
docker build -t toxchat/cimplefmt -f other/docker/cimplefmt/Dockerfile .
|
|
fi
|
|
docker run --rm -v "$PWD:/work" toxchat/cimplefmt "$@"
|