#!/bin/sh
set -e

# Check IfcConvert is executable and prints usage
IfcConvert --help 2>&1 | grep -q "IfcConvert"
echo "IfcConvert: OK"

# Check IfcGeomServer is executable
IfcGeomServer --help 2>&1 || true
echo "IfcGeomServer: OK"
