Skip to content

Commit

Permalink
Only add one string
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Jerphanion <[email protected]>

Co-authored-by: Klaim <[email protected]>
  • Loading branch information
jjerphan and Klaim committed Jan 9, 2025
1 parent 690563e commit 593677e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libmamba/src/core/error_handling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ namespace mamba
m_aggregated_message += "\n";
}

m_aggregated_message += "If you run into this error repeatedly, your package cache may be corrupted.\n";
m_aggregated_message += "Please try running `mamba clean -a` to remove this cache before retrying the operation.\n";
m_aggregated_message += "\n";
m_aggregated_message += "If you still are having issues, please report the error on `mamba-org/mamba`'s issue tracker:\n";
m_aggregated_message += "https://github.com/mamba-org/mamba/issues/new?assignees=&labels=&projects=&template=bug.yml";
m_aggregated_message += "If you run into this error repeatedly, your package cache may be corrupted.\n"
"Please try running `mamba clean -a` to remove this cache before retrying the operation.\n"
"\n"
"If you still are having issues, please report the error on `mamba-org/mamba`'s issue tracker:\n"
"https://github.com/mamba-org/mamba/issues/new?assignees=&labels=&projects=&template=bug.yml";
}
return m_aggregated_message.c_str();
}
Expand Down

0 comments on commit 593677e

Please sign in to comment.