mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 11:09:27 +00:00
f4d2a1bf4d
Passing the 'script' option to emacs doesn't work as expected on Linux, since the shebang is evaluated as: #!/usr/bin/env "emacs --script"
8 lines
185 B
Text
Executable file
8 lines
185 B
Text
Executable file
#!/bin/sh
|
|
:;exec emacs --script "$0" "$@"
|
|
|
|
(add-to-list 'load-path (file-name-directory load-file-name))
|
|
|
|
(require 'package-build)
|
|
|
|
(mapc 'package-build-archive (mapcar 'intern argv))
|