dropshell-build/test.sh
Your Name 3364914d3e
All checks were successful
dropshell-build / build (push) Successful in 6s
'Generic Commit'
2025-06-03 19:24:29 +12:00

13 lines
260 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
echo "Testing"
[ -f "${SCRIPT_DIR}/output/ipdemo" ] || { echo "ipdemo binary not found"; exit 1; }
"${SCRIPT_DIR}/output/ipdemo" || echo "Success!"