Closed jmlord closed 1 month ago
Getting an error when running loadFromSTAC
There was an error in previous run: running again.
Activating existing conda environment data__loadFromStac
mv: cannot stat '/conda-env-yml/data__loadFromStac.2.yml': No such file or directory
FAILED
Error: script returned non-zero value
Error: output.json file not found
Runner: biab-runner-conda version 2024-09-19 14:14
Getting an error when running loadFromSTAC
There was an error in previous run: running again. Activating existing conda environment data__loadFromStac mv: cannot stat '/conda-env-yml/data__loadFromStac.2.yml': No such file or directory FAILED Error: script returned non-zero value Error: output.json file not found Runner: biab-runner-conda version 2024-09-19 14:14
I can't see how this happens...
if [ -f "$condaEnvFile.2.yml" ]; then
if cmp -s $condaEnvFile.yml $condaEnvFile.2.yml; then
echo "Activating existing conda environment $condaEnvName"
else
echo "Updating existing conda environment $condaEnvName"
mamba env update -f $condaEnvFile.2.yml ; assertSuccess
fi
mv $condaEnvFile.2.yml $condaEnvFile.yml ; assertSuccess
fi
it checks for the file right before the mv
command. Are you sure you are running the right version of the code?
Stopping and restarting the server fixed the issue.
closes #130