This is probably not needed, but it is probably safer to make sure the
old files are removed instead of watching the core rebuild endlessly
when its not.
In libretro-buildbot-recipe.sh line 148:
if [ -z "${HELPER} ${MAKE}" ]; then
^-- SC2157: Argument to -z is always false due to literal strings.
In libretro-buildbot-recipe.sh line 348:
echo "CLEANUP CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 352:
echo "CLEANUP CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 372:
echo "BUILD CMD: ${CMAKE} $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 380:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 388:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 480:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 626:
if git config --file "$DIR/.gitmodules" --name-only --get-regexp path 2>&1 >/dev/null; then
^-- SC2069: The order of the 2>&1 and the redirect matters. The 2>&1 has to be last.
In libretro-buildbot-recipe.sh line 1018:
if [ -n ${CUSTOM_BUILD} ]; then
^-- SC2070: -n doesn't work with unquoted arguments. Quote or use [[ ]].
In libretro-buildbot-recipe.sh line 1045:
if [ -n ${CUSTOM_BUILD_DEBUG} ]; then
^-- SC2070: -n doesn't work with unquoted arguments. Quote or use [[ ]].