fpp/compiler/fpp-sbt
2025-11-10 21:59:24 -08:00

12 lines
175 B
Bash
Executable File

#!/bin/sh -e
if test -n "$FPP_JAVA_HOME"
then
sbt="sbt --java-home $FPP_JAVA_HOME $FPP_SBT_FLAGS"
else
sbt="sbt $FPP_SBT_FLAGS"
fi
echo "sbt command: $sbt $@"
$sbt "$@"