Skip to content

Commit 0a13a99

Browse files
committed
check_library_properties: Remove pointless code from undefined name field check
I suspect this was a copy/paste error that just so happened to still work.
1 parent e50e1f6 commit 0a13a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-ci-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,7 @@ function check_library_properties() {
17231723
# Check for blank name value
17241724
if [[ "$nameValue" == "" ]]; then
17251725
echo "ERROR: ${normalizedLibraryPropertiesPath}/library.properties: Has an undefined name field."
1726-
exitStatus=$(set_exit_status "$exitStatus" $((ARDUINO_CI_SCRIPT_CHECK_LIBRARY_PROPERTIES_BLANK_NAME_EXIT_STATUS + checkFolderNameExitStatus)))
1726+
exitStatus=$(set_exit_status "$exitStatus" $ARDUINO_CI_SCRIPT_CHECK_LIBRARY_PROPERTIES_BLANK_NAME_EXIT_STATUS)
17271727
else
17281728
# Check for invalid name value
17291729
# Library Manager installs libraries to a folder that is the name field value with any spaces replaced with _

0 commit comments

Comments
 (0)