mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-23 10:22:46 +00:00
15 lines
210 B
Bash
Executable file
15 lines
210 B
Bash
Executable file
#!/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[@]}
|