neo1973-germany/epydial/compile_theme
emdete 343ce9be5a always check for errors!
git-svn-id: http://www.neo1973-germany.de/svn@179 46df4e5c-bc4e-4628-a0fc-830ba316316d
2008-10-01 11:13:29 +00:00

23 lines
303 B
Bash
Executable file

#!/bin/bash -e
cd data/themes
for theme in *
do
if [[ ! -d "$theme" ]]
then
continue
fi
echo "Compiling theme $theme"
cd $theme
data_path="../../themes_data/"$theme"/"
for filename in *.edc
do
/opt/e17/bin/edje_cc -id $data_path/images -fd $data_path/fonts $filename
done
cd ..
done