resq-cli 0.3.0

Developer CLI for the ResQ autonomous drone platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
# Repo-specific pre-push — runs alongside the canonical ResQ pre-push hook.
# Generated by `resq dev scaffold-local-hook --kind cpp`.
set -euo pipefail

if [ ! -d build ]; then
    echo "  skipping C++ build check (no ./build directory; run 'cmake -B build' first)" >&2
    exit 0
fi

if command -v cmake >/dev/null 2>&1; then
    echo "  C++: cmake --build build"
    cmake --build build
else
    echo "  skipping C++ build check (cmake not installed)" >&2
fi