#!/bin/sh
#
# adds all ports in this repository into my tinderbox
# actually, this script is only useable by myself
#

find * -type d -mindepth 1 -maxdepth 1 | \
while read dir; do (
	cd $dir
	tinderbox add -b all
); done

