Skip to content
Snippets Groups Projects
Commit fb0b8f88 authored by Tony Salomone's avatar Tony Salomone
Browse files

Return status object (with message) on missing conda env.

parent 03c8357a
Branches
Tags
No related merge requests found
...@@ -372,7 +372,7 @@ export async function checkIfCondaEnvironmentExists() { ...@@ -372,7 +372,7 @@ export async function checkIfCondaEnvironmentExists() {
} else { } else {
response.status = 'error'; response.status = 'error';
response.message = 'Conda environment "transformerlab" not found.'; response.message = 'Conda environment "transformerlab" not found.';
return false; return response;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment