inab / WfExS-backend

Workflow Execution Service Backend
Apache License 2.0
16 stars 6 forks source link

Fix uninitialised variable error #41

Closed dcl10 closed 1 year ago

dcl10 commented 1 year ago

Overview

When attempting to set WfExS up using an ansible script, funning full-installer.bash would throw an error pointing to line 115 in basic-installer.bash saying /root/WfExS-backend/basic-installer.bash: line 115: envActivate: unbound variable. This indicated an unassigned variable. Indeed, line 115 tries to use envActivate before it is assigned.

The following change corrects this behaviour.