runbox 1.5.1

CLI for scaffolding container runner integration files
Documentation
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
# l0 — host-native test execution; runs w3 .test level::3 directly on the host.
# Entered via VERB_LAYER=l0 or called directly as ./verb/test.d/l0.
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/../.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "w3 .test level::3"; exit 0; fi
exec w3 .test level::3