If a blank line was encountered in the Dependency file, the file would stop being read on the spot and the the previous line's dependency wouldn't be included. This adds a check for whitespace before assuming the file is an ELF
Example dependency file:
Dep1
Dep2
Dep3
Dep4
was only including Dep1 and Dep2 before assuming the file was ELF and stopping the read.
If a blank line was encountered in the Dependency file, the file would stop being read on the spot and the the previous line's dependency wouldn't be included. This adds a check for whitespace before assuming the file is an ELF
Example dependency file:
was only including
Dep1
andDep2
before assuming the file was ELF and stopping the read.