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

11 lines
238 B
Bash
Raw Normal View History

2022-04-11 14:23:32 +02:00
#!/bin/bash
2022-05-22 16:43:47 +02:00
if [ ! -d bsp_stm32h7_freertos ]; then
echo "This script should be sourced inside the example repository"
exit 1
fi
2022-04-11 14:23:32 +02:00
export PATH="$(pwd)/xpacks/.bin":$PATH
2022-05-22 16:43:47 +02:00
export PATH="$(pwd)/cmake/scripts:$PATH"
export REPO_ROOT="$(pwd)"