mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2026-05-16 04:52:39 +02:00
Initial source commit.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "Usage: $0 <commit-message>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for dir in */ ; do
|
||||
if [ -d "$dir/.git" ]; then
|
||||
echo "Processing $dir"
|
||||
(
|
||||
cd "$dir" || exit
|
||||
git add .
|
||||
git commit -m "$1"
|
||||
git push
|
||||
)
|
||||
fi
|
||||
done
|
||||
|
||||
echo "Done!"
|
||||
Reference in New Issue
Block a user