blob: f260e5d0dd160eccea339e1914419e30ba774c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /usr/bin/env bash
/bootstrap/sbuild/setup-sbuild-base.bash
if [[ "$BUILD_FOR_ARCH" == "amd64" ]]; then
/bootstrap/sbuild/setup-sbuild-amd64.bash
fi
if [[ "$BUILD_FOR_ARCH" == "arm64" ]]; then
/bootstrap/sbuild/setup-sbuild-arm64.bash
fi
|