nitro-engine/examples/effects/assets.sh
2023-04-01 13:33:38 +01:00

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;