docs: README.md
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s
This commit is contained in:
10
arty.yml
10
arty.yml
@@ -152,11 +152,12 @@ scripts:
|
||||
skipped_count=0
|
||||
|
||||
for dir in */; do
|
||||
cd $dir && python3 -m venv venv && source venv/bin/activate
|
||||
if [ -f "${dir}requirements.txt" ]; then
|
||||
cd $dir
|
||||
python3 -m venv venv && source venv/bin/activate
|
||||
if [ -f "requirements.txt" ]; then
|
||||
echo ""
|
||||
echo "📦 Installing ${dir%/} dependencies..."
|
||||
if pip install -r "${dir}requirements.txt"; then
|
||||
if pip install -r "requirements.txt"; then
|
||||
installed_count=$((installed_count + 1))
|
||||
echo " ✓ ${dir%/} dependencies installed"
|
||||
else
|
||||
@@ -166,7 +167,8 @@ scripts:
|
||||
else
|
||||
skipped_count=$((skipped_count + 1))
|
||||
fi
|
||||
deactivate && cd ..
|
||||
deactivate
|
||||
cd -
|
||||
done
|
||||
|
||||
echo ""
|
||||
|
||||
Reference in New Issue
Block a user