File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,23 @@ if [ -z "$1" ]; then
1616 exit
1717fi
1818
19- BUILD_DIR =" $1 "
19+ build_dir =" $1 "
2020
21- if [ ! -d $BUILD_DIR ]; then
22- echo " Directory $BUILD_DIR not found!"
21+ if [ ! -d $build_dir ]; then
22+ echo " Directory $build_dir not found!"
2323 exit
2424fi
2525
26- KCONFIG_DIR= $BUILD_DIR /rst/doc/reference/kconfig
26+ kconfig_dir= $build_dir /rst/doc/reference/kconfig
2727
28- if [ ! -d $KCONFIG_DIR ]; then
29- echo " Kconfig documentation not found at $KCONFIG_DIR "
28+ if [ ! -d $kconfig_dir ]; then
29+ echo " Kconfig documentation not found at $kconfig_dir "
3030 exit
3131fi
3232
3333get_options ()
3434{
35- cd $KCONFIG_DIR ; ls CONFIG_DNS* CONFIG_NET* CONFIG_IEEE802154* | sed ' s/\.rst//g'
35+ cd $kconfig_dir ; ls CONFIG_DNS* CONFIG_NET* CONFIG_IEEE802154* | sed ' s/\.rst//g'
3636}
3737
3838get_options | while read opt
You can’t perform that action at this time.
0 commit comments