#!/bin/bash

# Stop when error occurred
set -e
# Print command being executed
set -x

TMPDIR=$(mktemp -d /tmp/flyboat-XXXXXX)
git clone https://gitlab.com/flyboat/flyboat.git "$TMPDIR"
cd "$TMPDIR"
./install.sh
