Skip to content

Commit

Permalink
feat(bin): Add Windows support (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 authored Dec 1, 2023
1 parent 04a55c7 commit c818883
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

# Packaging
.cask
.eask

# github-elpa
.github-elpa-working/

# Cask repository

dist/
cask-repository/
16 changes: 16 additions & 0 deletions Eask
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
(package "github-elpa" "0.0.1" "Build and publish ELPA repositories with GitHub Pages")

(website-url "https://github.com/10sr/github-elpa")

(package-file "github-elpa.el")

(files :defaults "bin")

(source 'gnu)
(source 'melpa)

(depends-on "package-build")
(depends-on "commander")
(depends-on "git")

(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
2 changes: 1 addition & 1 deletion bin/github-elpa
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
(command "update" "Update elpa repository" github-elpa-bin-update)
(command "build" "Update elpa archives without committing them"
github-elpa-bin-build)
(command "commit" "Commit elpa archives" github-elpa-bin-commmit)
(command "commit" "Commit elpa archives" github-elpa-bin-commit)

(option "--working-dir <working-dir>, -w <working-dir>"
github-elpa-bin-set-working-dir)
Expand Down
1 change: 1 addition & 0 deletions bin/github-elpa.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
emacs -batch -Q -l %~dp0github-elpa -- %*

0 comments on commit c818883

Please sign in to comment.