Skip to content

Commit

Permalink
Patched wrong condtion
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgurance committed Jan 26, 2025
1 parent c52e99a commit 9039ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ISM/SoftwareInformation.cr
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ module ISM
return @dependencies.reject { |entry| dependencyIsUnique(entry.fullName) && !uniqueDependencyIsEnabled(entry.fullName)} + dependenciesArray
else
#REJECT INSTALLED DEPENDENCIES AND UNIQUE DEPENDENCIES NOT SELECTIONED
return @dependencies.reject { |entry| Ism.softwareIsInstalled(entry.information) || dependencyIsUnique(entry.fullName) && !uniqueDependencyIsEnabled(entry.fullName)} + dependenciesArray.reject { |entry| entry.passEnabled && !Ism.systemInformation.crossToolchainFullyBuilt}
return @dependencies.reject { |entry| Ism.softwareIsInstalled(entry.information) || dependencyIsUnique(entry.fullName) && !uniqueDependencyIsEnabled(entry.fullName)} + dependenciesArray.reject { |entry| entry.passEnabled && Ism.systemInformation.crossToolchainFullyBuilt}
end

rescue error
Expand Down

0 comments on commit 9039ca2

Please sign in to comment.