Skip to content

Commit 34cdbfe

Browse files
committed
unify
1 parent 3eaa9ab commit 34cdbfe

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

services/agent/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/agent
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/api-server/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2121
cd services/api-server
2222
pip install uv
2323
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
24-
cd - || exit 1
24+
cd -
2525
echo "$INFO" "PIP :"
2626
uv pip list | sed 's/^/ /'
2727
fi

services/catalog/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2121
cd services/catalog
2222
pip install uv
2323
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
24-
cd - || exit 1
24+
cd -
2525
echo "$INFO" "PIP :"
2626
uv pip list | sed 's/^/ /'
2727
fi

services/clusters-keeper/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/clusters-keeper
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/dask-sidecar/docker/boot.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2525
python --version | sed 's/^/ /'
2626
command -v python | sed 's/^/ /'
2727
cd services/dask-sidecar
28-
pip install --no-cache-dir -r requirements/dev.txt
29-
cd - || exit 1
28+
uv pip install --no-cache-dir -r requirements/dev.txt
29+
cd -
3030
print_info "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/datcore-adapter/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/datcore-adapter
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/director-v2/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/director-v2
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/dynamic-scheduler/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/dynamic-scheduler
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

services/dynamic-sidecar/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
# NOTE: uv does not like this requirement file...
2727
cd /devel/services/dynamic-sidecar
2828
pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
pip list | sed 's/^/ /'
3232
fi

services/efs-guardian/docker/boot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${SC_BUILD_TARGET}" = "development" ]; then
2626
cd services/efs-guardian
2727
pip install uv
2828
uv pip --quiet --no-cache-dir install -r requirements/dev.txt
29-
cd - || exit 1
29+
cd -
3030
echo "$INFO" "PIP :"
3131
uv pip list | sed 's/^/ /'
3232
fi

0 commit comments

Comments
 (0)