1#!/usr/bin/env bash 2 3LAUNCHER=dotnet 4 5if ! [ -x "$(command -v $LAUNCHER)" ] 6then 7 echo "$LAUNCHER not found. Renode requires dotnet runtime. Please refer to documentation for installation instructions. Exiting!" 8 exit 1 9fi 10 11$LAUNCHER $(dirname "${BASH_SOURCE[0]}")/bin/Renode.dll "$@" 12