Files
enserver/build.sh
Ivan Vazhenin 54fa589261 First commit
2023-03-12 16:40:33 +03:00

13 lines
256 B
Bash
Executable File

#!/bin/bash
./pre_build.sh
if [ -f /etc/debian_version ]; then
echo 'Сборка deb-пакета'
python setup.py --command-packages=stdeb.command bdist_deb
else
echo 'Сборка rpm-пакета'
python setup.py bdist_rpm
fi
exit 0