made script more generic
This commit is contained in:
parent
be6e94bf87
commit
b53aed9cf9
@ -1,6 +1,18 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [[ ! -f README.md ]]; then
|
counter=0
|
||||||
|
common_example_dir="example_common"
|
||||||
|
while [ ${counter} -lt 5 ]
|
||||||
|
do
|
||||||
|
if [ ! -d ${common_example_dir} ];then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
counter=$((counter=counter + 1))
|
||||||
cd ..
|
cd ..
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "${counter}" -ge 5 ];then
|
||||||
|
echo "${common_example_dir} not found in upper directories!"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
folder_list=(
|
folder_list=(
|
||||||
|
Loading…
Reference in New Issue
Block a user