mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 11:09:31 +00:00
c8f4157f72
This is a package for building GIT-based ELPA packages for Emacs.
10 lines
238 B
Bash
Executable file
10 lines
238 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# (load-file "~/.emacs.d/elisp/package-build.el")
|
|
# (package-build-archive
|
|
|
|
for pkg in $@; do
|
|
echo "Building package: $pkg"
|
|
emacs --batch -l package-build.el -u dcurtis --eval "(package-build-archive \"$pkg\")"
|
|
done
|
|
|