Sort input file list

This commit is contained in:
Bernhard M. Wiedemann 2022-12-10 20:19:13 +00:00 committed by Adam Honse
parent 5da85adb90
commit a782c00784

View file

@ -52,7 +52,7 @@ DUMMY_LIST=$( grep -hR -e DUMMY_DEVICE_DETECTOR ${CONTROLLER_PATH} | cut -d '('
# Create a list of RGBController.cpp classes including path # # Create a list of RGBController.cpp classes including path #
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
echo -e "Creating file list to parse metadata" echo -e "Creating file list to parse metadata"
FILE_LIST=$(find ${CONTROLLER_PATH} | grep RGBController_ | grep cpp) FILE_LIST=$(find ${CONTROLLER_PATH} | sort | grep RGBController_ | grep cpp)
#Check the output of the file_list #Check the output of the file_list
# echo -e "$FILE_LIST" >> "file_list.txt" # echo -e "$FILE_LIST" >> "file_list.txt"