#!/usr/bin/env bash set -e echo "" > coverage.txt for d in $(find ./* -maxdepth 10 -type d -not -path "./build" -not -path "./Godeps/*" ); do if ls $d/*.go &> /dev/null; then go test -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then cat profile.out >> coverage.txt echo '<<<<<< EOF' >> coverage.txt rm profile.out fi fi done bsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/net/remotebox
Commit message (Expand)AuthorAgeFilesLines
* net/remotebox: Update dependency after net/tigervnc separationmeta2019-04-111-1/+3
* Change my maintainer email address to my new one at the FreeBSD project.kai2019-02-021-1/+1
* net/remotebox: remove support for RDC from KDE4rene2018-12-311-5/+1
* Update to 2.5krion2018-05-023-13/+22
* net/remotebox: Update to 2.4yuri2018-02-243-26/+60
* Do not abuse INSTALL_MAN when installing documentation, examples, anddanfe2018-01-10