15 lines
380 B
Bash
15 lines
380 B
Bash
#!/bin/bash
|
|
|
|
echo "clean_env_variables.sh: Cleaning up so that no one inherits any of these values"
|
|
export DEBUG_LEVEL_OPT=""
|
|
export EXTRA_PARAMS=""
|
|
export PROJECT_BOARD=""
|
|
export PROJECT_CPU=""
|
|
export USE_BOOTLOADER=""
|
|
export DEFAULT_ENGINE_TYPE=""
|
|
export LED_CRITICAL_ERROR_BRAIN_PIN=""
|
|
export BUILDDIR=""
|
|
export DEBUG_LEVEL_OPT=""
|
|
export USE_FATFS=""
|
|
export USE_SMART_BUILD=""
|