runbox 1.2.0

CLI for scaffolding container runner integration files
Documentation
1
2
3
4
5
6
7
#!/usr/bin/env bash
# do build — compile project artifacts (cargo ecosystem)
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo build -p runbox"; exit 0; fi
exec cargo build -p runbox