Added debug to the entrypoint of GitHub actions

This commit is contained in:
Salvador E. Tropea 2022-05-02 13:13:17 -03:00
parent 6123ad3b59
commit 995bb705d9
1 changed files with 3 additions and 2 deletions

View File

@ -166,11 +166,12 @@ function run {
/usr/bin/kicad-git-filters.py
fi
echo QUICKSTART: $QUICKSTART
if [ QUICKSTART == "YES" ]; then
echo $DIR $VERBOSE --quick-start
echo Quick-start options: $DIR $VERBOSE --quick-start
kibot $DIR $VERBOSE --quick-start
else
echo $CONFIG $DIR $BOARD $SCHEMA $SKIP $VERBOSE $VARIANT $TARGETS
echo Options: $CONFIG $DIR $BOARD $SCHEMA $SKIP $VERBOSE $VARIANT $TARGETS
kibot $CONFIG $DIR $BOARD $SCHEMA $SKIP $VERBOSE $VARIANT $TARGETS
fi
}