Skip to content

Commit

Permalink
fix: rename requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Apr 27, 2024
1 parent aee0631 commit ee42d8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deployment/docker/runner/runner-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ else
echoerr "No additional system dependencies to install"
fi

if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.yaml"; then
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
echoerr "Installing additional python dependencies"
pip3 install --upgrade --user \
-r "${SEMAPHORE_CONFIG_PATH}/requirements.yaml"
-r "${SEMAPHORE_CONFIG_PATH}/requirements.txt"
else
echoerr "No additional python dependencies to install"
fi
Expand Down
4 changes: 2 additions & 2 deletions deployment/docker/server/server-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ else
echoerr "No additional system dependencies to install"
fi

if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.yaml"; then
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
echoerr "Installing additional python dependencies"
pip3 install --upgrade --user \
-r "${SEMAPHORE_CONFIG_PATH}/requirements.yaml"
-r "${SEMAPHORE_CONFIG_PATH}/requirements.txt"
else
echoerr "No additional python dependencies to install"
fi
Expand Down

0 comments on commit ee42d8c

Please sign in to comment.