Fixed the checks' include path to the utilities in the build.bash

This commit is contained in:
Eric-Paul Ickhorn 2023-11-29 22:15:06 +01:00
parent 2cbcfdd336
commit 5f58433f02
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ function build_checks() {
fi fi
cd $check_folder cd $check_folder
gcc src/*.c $INVOCATION_PATH/.build/libparcel.a -o check.elf -I $INVOCATION_PATH/core-parser/inc/ gcc src/*.c $INVOCATION_PATH/.build/libparcel.a -o check.elf -I $INVOCATION_PATH/core-parser/inc/ -I $INVOCATION_PATH/utility/exports/
cd .. cd ..
done done
} }