mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Print timestamps when starting to build packages (convenient when viewing build output)
This commit is contained in:
parent
f421778f5f
commit
83265caeb7
1 changed files with 3 additions and 0 deletions
3
melpa
3
melpa
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue