introduce separate database-schemas base+rbac #103

Merged
hsh-michaelhoennig merged 54 commits from introduce-separate-database-schemas-base-and-rbac into master 2024-09-16 15:36:38 +02:00
Showing only changes of commit 3c4139c726 - Show all commits

View File

@ -12,7 +12,7 @@ while true; do
# check if the local branch differs from the remote branch
if [ "$LOCAL" != "$REMOTE" ]; then
echo "pulling changes from origin"
echo "local $LOCAL differs from remote $REMOTE => pulling changes from origin"
git pull origin $BRANCH
# run the command
@ -23,6 +23,7 @@ while true; do
echo "no changes detected on the origin branch"
fi
echo "waiting for 1 minute before checking again..."
sleep 60
echo -e "waiting for changes..."
sleep 10
echo -e "\r\033[K"
done