#!/bin/sh

for i in `ls src/plugins`
do
	if [ -d "src/plugins/$i" ]
	then
		echo -n "$i;"
		#echo "--- $i ---"
	fi
done

echo
