mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 15:36:19 -06:00
12 lines
175 B
Bash
Executable File
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 "$@"
|