#!/bin/sh

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

echo
