Reviewed-on: https://gitea.serafimdev.com/serafim/dos/pulls/13 Reviewed-by: dr-wh0 <79003667309@yandex.ru> Co-authored-by: Urmipie <pablonepikasso8000@gmail.com> Co-committed-by: Urmipie <pablonepikasso8000@gmail.com>
5 lines
190 B
Bash
Executable File
5 lines
190 B
Bash
Executable File
#!/bin/sh
|
|
set -e # if compilation fail next command will not be executed, so older version of programm will not be launched
|
|
g++ src/DosAtk.cpp -o DosAtk -lcurl -lssl -lcrypto
|
|
./DosAtk "$@"
|