fix tests

This commit is contained in:
Aiden McClelland
2025-11-07 01:58:44 -07:00
parent 05e73be7b2
commit ab2c52b72c
7 changed files with 39 additions and 13 deletions

View File

@@ -1,15 +1,15 @@
#!/bin/bash
PROFILE=${PROFILE:-release}
if [ "${PROFILE}" = "release" ]; then
BUILD_FLAGS="--release"
fi
cd "$(dirname "${BASH_SOURCE[0]}")"
set -ea
shopt -s expand_aliases
PROFILE=${PROFILE:-release}
if [ "${PROFILE}" = "release" ]; then
BUILD_FLAGS="--release"
fi
if [ -z "$ARCH" ]; then
ARCH=$(uname -m)
fi