fsfw-example-stm32h7-freertos/load-path.sh

11 lines
238 B
Bash
Executable File

#!/bin/bash
if [ ! -d bsp_stm32h7_freertos ]; then
echo "This script should be sourced inside the example repository"
exit 1
fi
export PATH="$(pwd)/xpacks/.bin":$PATH
export PATH="$(pwd)/cmake/scripts:$PATH"
export REPO_ROOT="$(pwd)"