From 55abae8769c53171b1c3caa4dcac7f1fdbc5b65c Mon Sep 17 00:00:00 2001 From: umarcor Date: Thu, 21 Jan 2021 08:24:50 +0100 Subject: vendors/uvvm: adjust newline trim --- scripts/vendors/compile-uvvm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/vendors/compile-uvvm.sh b/scripts/vendors/compile-uvvm.sh index 873d6514d..c244b5e94 100755 --- a/scripts/vendors/compile-uvvm.sh +++ b/scripts/vendors/compile-uvvm.sh @@ -373,7 +373,7 @@ test $VERBOSE -eq 1 && echo -e " ${ANSI_GRAY}Reading compile order files...${AN Components=() while IFS= read -r Component; do - Component=${Component%\r} + Component=${Component%'\r'} if [[ ${Component:0:2} != "# " ]]; then Components+=("$Component") fi @@ -409,7 +409,7 @@ for ComponentName in "${Components[@]}"; do fi while IFS= read -r File; do - File=${File%\r} + File=${File%'\r'} if [[ ${File:0:2} == "# " ]]; then if [[ ${File:2:7} == "library" ]]; then LibraryName=${File:10} -- cgit v1.2.3