Print timestamps when starting to build packages (convenient when viewing build output)

This commit is contained in:
Steve Purcell 2012-05-06 11:55:06 +01:00
parent f421778f5f
commit 83265caeb7

3
melpa
View file

@ -7,6 +7,7 @@ cd ${BASEDIR} || exit 1
function melpa_clear_packages {
echo "*** Clearing the packages folder..."
date
rm -rf packages/*
echo
}
@ -14,12 +15,14 @@ function melpa_clear_packages {
function melpa_build_pkglist {
echo "*** Building all packages..."
date
emacs --batch -l package-build.el --eval "(package-build-all)"
echo
}
function melpa_generate_html {
echo "*** Building html..."
date
cd html || return 1
erb index.erb > index.md
pandoc --template=template.html --css=style.css -s --mathml -t html --smart index.md > index.html