Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Apr 10, 2024
1 parent 4721be4 commit 59aea77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker/scripts/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ while [ "$1" != "" ]; do
ADDITIONAL_REQUIREMENTS_PATH=$1
;;
*)
shift
echo "Unrecognized flag $1"
usage
exit 1
;;
Expand All @@ -147,6 +149,7 @@ done
# Optionnally install addtional dependencies
if [[ -n ${ADDITIONAL_REQUIREMENTS_PATH} ]]; then
pip install -r ${ADDITIONAL_REQUIREMENTS_PATH}
fi

# Run traindiff tests
if [[ ${TEST} == "true" ]]; then
Expand Down Expand Up @@ -324,4 +327,4 @@ then
fi

echo "Exiting with $RETURN_CODE"
exit $RETURN_CODE
exit $RETURN_CODE

0 comments on commit 59aea77

Please sign in to comment.