elpa

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ea0423d0caa13f2432d0f54528d3cb21a221beff
parent 64ff5f72e62b3c5c9487605deb07f47c1ef112ff
Author: Erik Oosting <crazazy@tilde.cafe>
Date:   Fri, 25 Feb 2022 17:42:47 +0100

fix build script

Diffstat:
Mbuild.sh | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/build.sh b/build.sh @@ -1,11 +1,11 @@ #!/usr/bin/env nix-shell -#!nix-shell -p sshfs cask -if [! -d .cask ]; then +#!nix-shell -p sshfs cask -i bash +if [ ! -d .cask ]; then cask install fi mkdir -p docs/elpa -if [-z "$(ls -A ./docs/elpa)"]; then +if [ -z "$(ls -A ./docs/elpa)" ]; then sshfs cafe:public_html/elpa ./docs/elpa fi -cask exec github-elpa update +cask exec github-elpa build