lv_micropython/scripts/env-variables-micropython.sh

12 lines
257 B
Bash
Raw Permalink Normal View History

2025-03-15 13:46:23 +01:00
#!/bin/bash
# Set environment variables for MicroPython development
BUILD_VERBOSE=1
MICROPYTHON=$(pwd)
echo "MICROPYTHON=$MICROPYTHON"
if [[ "$MICROPYTHON" == */scripts ]]; then
MICROPYTHON="${MICROPYTHON%/scripts}"
fi
echo "MICROPYTHON=$MICROPYTHON"