katana/stats.sh

16 lines
210 B
Bash
Raw Permalink Normal View History

#!/bin/bash
set -e
cwd="$(pwd)"
if ! type -p cloc ;then
echo "cloc is not in your PATH"
exit 1
fi
packs=("kdelibs" "kde-workspace" "kde-extraapps")
source "$(dirname $0)/fetch.sh"
cloc ${packs[@]}