mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
12 lines
250 B
Bash
Executable File
12 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Short script to verify behaviour of configure_ci_environment.sh
|
|
#
|
|
#
|
|
cd $(dirname $0) # make dir
|
|
|
|
(
|
|
. ./configure_ci_environment.sh
|
|
[[ $PEDANTIC_CFLAGS ]] || { echo "PEDANTIC_CFLAGS is not defined"; exit 1; }
|
|
) || { exit 1; }
|