mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 03:00:10 +00:00
14 lines
319 B
Bash
Executable file
14 lines
319 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
ECUKES_EMACS=${EMACS:-$(which emacs)}
|
|
|
|
echo "*** Emacs version ***"
|
|
echo "ECUKES_EMACS = $ECUKES_EMACS"
|
|
"$ECUKES_EMACS" --version
|
|
echo
|
|
|
|
"$ECUKES_EMACS" --batch --eval "(unless (ignore-errors (require 'cl-lib)) (package-refresh-contents) (package-install 'cl-lib))"
|
|
|
|
cask exec ecukes
|