mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-01-22 14:03:49 +00:00
13 lines
206 B
Bash
Executable File
13 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for X in "$PWD"/data/*/scripts; do
|
|
cd "$X"
|
|
for X in *.shader; do
|
|
if [ -f "$X" ]; then
|
|
ls *.shader | sed 's/\.shader$//' > shaderlist.txt
|
|
git add shaderlist.txt
|
|
break
|
|
fi
|
|
done
|
|
done
|