mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 08:35:44 -04:00
10 lines
148 B
Bash
10 lines
148 B
Bash
#!/bin/sh
|
|
|
|
for i in `ls`; do
|
|
if test -e $i/assets.sh ; then
|
|
cd $i;
|
|
sh assets.sh || { exit 1;};
|
|
cd ..;
|
|
fi;
|
|
done;
|