You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
690 B
Bash

#!/bin/bash
# Specify the directory containing the top-level folders
directory="/app/extensions"
# Iterate over the top-level folders
for folder in "$directory"/*; do
if [ -d "$folder" ]; then
# Change directory to the current folder
cd "$folder"
# Check if requirements.txt file exists
if [ -f "requirements.txt" ]; then
echo "Installing requirements in $folder..."
pip3 install -r requirements.txt
echo "Requirements installed in $folder"
else
echo "Skipping $folder: requirements.txt not found"
fi
# Change back to the original directory
cd "$directory"
fi
done