9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Download and compile OTClient
|
|
cd /home/tibia
|
|
git clone "https://github.com/edubart/otclient.git"
|
|
cd otclient && mkdir build && cd build
|
|
cmake ..
|
|
make -j $(nproc)
|