summaryrefslogtreecommitdiff
path: root/scripts/clean.sh
blob: 9447da2da7bb1155d2511579dd979f677655a940 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
# MainAX25-Stack (MAX25-Stack) — remove CMake build trees.
set -euo pipefail

ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"

rm -rf build stacks/crdop/build
echo "Removed build/ and stacks/crdop/build/"
git clone -b <branch> https://cgit.mode42.com/<repo>.git
git clone -b <branch> git://cgit.mode42.com/<repo>.git

info@mode42.com