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

11 lines
238 B
Bash
Raw Permalink Normal View History

#!/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
export PATH="$(pwd)/xpacks/.bin":$PATH
2022-05-22 16:43:47 +02:00
export PATH="$(pwd)/cmake/scripts:$PATH"
export REPO_ROOT="$(pwd)"