mirror of
https://github.com/correl/melpa.git
synced 2024-11-28 11:09:55 +00:00
parent
106834fc73
commit
2ba2017e76
1 changed files with 11 additions and 0 deletions
11
melpa
11
melpa
|
@ -36,6 +36,17 @@ function melpa_validate {
|
|||
NUMBUILT=$(trim `ls packages/*.{el,tar} | wc -l`)
|
||||
|
||||
echo "${NUMBUILT}/${NUMPACKAGES} packages built"
|
||||
|
||||
if [[ $NUMBUILT -ne $NUMPACKAGES ]]; then
|
||||
echo
|
||||
echo "Missing Packages"
|
||||
echo "______________________"
|
||||
emacs --script missing.el
|
||||
exit 1
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
function print_usage {
|
||||
|
|
Loading…
Reference in a new issue