mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-08 09:14:10 +01:00
17 lines
269 B
Bash
Executable File
17 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
os="$1"
|
|
codename="$2"
|
|
|
|
if [[ -z "$os" ]] || [[ -z "$codename" ]]; then
|
|
echo "Usage: $0 <os> <codename>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./build-tarball "$os" "$codename" && ./build-deb "$os" "$codename" && \
|
|
./test-deb "$os" "$codename"
|