Skip to content

Commit

Permalink
swancustomenvironments: Detect uv issues when resolving packages
Browse files Browse the repository at this point in the history
Detect uv error messages and include lowercase error messages
  • Loading branch information
rodrigo-sobral committed Dec 9, 2024
1 parent 19e3793 commit 9b19386
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h2 id="modal-title" style="text-align: left;"></h2>
else {
outputBox.innerHTML += message_line;
outputBox.scrollTop = outputBox.scrollHeight;
if (message_line.includes('ERROR')) {
if (message_line.toUpperCase().includes('ERROR')) {
has_failed = true;
}
}
Expand Down

0 comments on commit 9b19386

Please sign in to comment.