Skip to content

Commit

Permalink
Add run all script to data/tags and data/styles, and run it
Browse files Browse the repository at this point in the history
  • Loading branch information
BaseMax committed Jan 10, 2025
1 parent c33c52a commit e546faf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/data/styles/run_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

for script in *.py; do
echo "Running $script..."
python3 "$script" || python "$script" || echo "Error running $script"
done

echo "All scripts executed."
8 changes: 8 additions & 0 deletions build/data/tags/run_all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

for script in *.py; do
echo "Running $script..."
python3 "$script" || python "$script" || echo "Error running $script"
done

echo "All scripts executed."

0 comments on commit e546faf

Please sign in to comment.