Skip to content
Snippets Groups Projects
Commit 0e5f5fe1 authored by garciadeblas's avatar garciadeblas
Browse files

generate_descriptor_pkg.sh: improved detection of allowed files


This change introduces a new check for other allowed files, as long
as its name is defined in ALLOWED_FILES_WILDCARDS. For instance, with
this change, README can now be README.txt, README.md, README.rst, etc.

Change-Id: Ia9a0bfb455b08fd5a8a924508f5611de57754454
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 7ca094a4
Branches rift300
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@ NSD_FOLDERS=(scripts charms icons ns_config vnf_config)
# Other files allowed in the descriptor base directory
ALLOWED_FILES=(README)
ALLOWED_FILES_WILDCARDS=(README)
DESC_TYPES=(vnfd nsd)
DESC_EXTN=(yml yaml json xml)
......@@ -756,7 +757,11 @@ if [ $CREATE == false ]; then
for f in ${files[@]}; do
if [ $(contains "${ALLOWED_FILES[@]}" $f) == "n" ]; then
echo "WARN: Unsupported file $f found"
for j in ${ALLOWED_FILES_WILDCARDS[@]}; do
if [[ $f != *"$j"* ]]; then
echo "WARN: Unsupported file $f found"
fi
done
fi
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment