Merge branch 'feature/issue-276' into 'master'

Feature/issue-276

See merge request touchinstinct/BuildScripts!1
This commit is contained in:
Roman Pelmegov 2023-03-23 14:56:48 +00:00
commit ba7f792f96
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,12 @@ do
fi
done
ERR_PATHS=$(find . -name "*[<>:\\|?*]*" | xargs -I %s echo "- %s")
if [ "$ERR_PATHS" ]; then
echo "Export aborted! Invalid characters found in file or directories name(s):\n$ERR_PATHS"
exit 1
fi
if [ -z "${EXPORT_DATE}" ]; then
EXPORT_DATE="${LAST_COMMIT_DATE}"
fi