feat: build script now refuse to launch old version

This commit is contained in:
Павел Овчинников 2025-04-07 21:03:33 +03:00
parent 9edf137d25
commit 82826b3577
1 changed files with 2 additions and 0 deletions

View File

@ -1,2 +1,4 @@
#!/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 "$@"