mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
10 lines
127 B
Bash
Executable file
10 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -d build-docker-release ]; then
|
|
mkdir build-docker-release
|
|
fi
|
|
|
|
cd build-docker-release
|
|
qmake ..
|
|
make -j8
|