* Add phone call authentication method * Remove dynamic mem allocation from error handler * Add more error handling code * Move error handling to different file * Remove Socket IO dependency * cleanup in websocket code * Add rapidjson as cmake dependency * Added Dockerfiles as primary build system for packages * Changed policy in CMakeList to work with lower version of CMake * Fix opensuse builds * Link filesystem library in gcc 8.5 or older
10 lines
368 B
Bash
Executable File
10 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
cmake -B rublon_ssh-build /home/rublon-ssh/
|
|
cmake --build rublon_ssh-build/
|
|
cmake --build rublon_ssh-build/ --target package -- -j
|
|
if [ ! -d /home/rublon-ssh/$1_packages ]; then
|
|
mkdir /home/rublon-ssh/$1_packages
|
|
fi
|
|
cp rublon_ssh-build/*rpm /home/rublon-ssh/$1_packages 2>/dev/null || cp rublon_ssh-build/*deb /home/rublon-ssh/$1_packages 2>/dev/null
|
|
|