mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-21 17:01:04 +01:00
Merge branch 'refactor_server_wrapper' of https://github.com/semaphoreui/semaphore into refactor_server_wrapper
This commit is contained in:
commit
850efac288
@ -180,14 +180,6 @@ EOF
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -f "${SEMAPHORE_CONFIG_PATH}/packages.txt"; then
|
|
||||||
echoerr "Installing additional system dependencies"
|
|
||||||
apk add --no-cache --upgrade \
|
|
||||||
$(cat "${SEMAPHORE_CONFIG_PATH}/packages.txt" | xargs)
|
|
||||||
else
|
|
||||||
echoerr "No additional system dependencies to install"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
|
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
|
||||||
echoerr "Installing additional python dependencies"
|
echoerr "Installing additional python dependencies"
|
||||||
pip3 install --upgrade \
|
pip3 install --upgrade \
|
||||||
|
@ -5,14 +5,6 @@ echoerr() { printf "%s\n" "$*" >&2; }
|
|||||||
export SEMAPHORE_CONFIG_PATH="${SEMAPHORE_CONFIG_PATH:-/etc/semaphore}"
|
export SEMAPHORE_CONFIG_PATH="${SEMAPHORE_CONFIG_PATH:-/etc/semaphore}"
|
||||||
export SEMAPHORE_TMP_PATH="${SEMAPHORE_TMP_PATH:-/tmp/semaphore}"
|
export SEMAPHORE_TMP_PATH="${SEMAPHORE_TMP_PATH:-/tmp/semaphore}"
|
||||||
|
|
||||||
if test -f "${SEMAPHORE_CONFIG_PATH}/packages.txt"; then
|
|
||||||
echoerr "Installing additional system dependencies"
|
|
||||||
apk add --no-cache --upgrade \
|
|
||||||
$(cat "${SEMAPHORE_CONFIG_PATH}/packages.txt" | xargs)
|
|
||||||
else
|
|
||||||
echoerr "No additional system dependencies to install"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
|
if test -f "${SEMAPHORE_CONFIG_PATH}/requirements.txt"; then
|
||||||
echoerr "Installing additional python dependencies"
|
echoerr "Installing additional python dependencies"
|
||||||
pip3 install --upgrade \
|
pip3 install --upgrade \
|
||||||
|
@ -241,15 +241,6 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test -f "${SEMAPHORE_CONFIG_PATH}/packages.txt"; then
|
|
||||||
echoerr "Installing additional system dependencies"
|
|
||||||
apk add --no-cache --upgrade \
|
|
||||||
$(cat "${SEMAPHORE_CONFIG_PATH}/packages.txt" | xargs)
|
|
||||||
else
|
|
||||||
echoerr "No additional system dependencies to install"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Install additional python dependencies
|
# Install additional python dependencies
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user