xcodebuild / blog-admin

Write blog in emacs with hexo/org-page/nikola
GNU General Public License v2.0
229 stars 24 forks source link

support for fish shell #49

Open gour opened 7 years ago

gour commented 7 years ago

Hello,

I'm using fish as my default shell and e.g. 'build' command fails due to:

(defun build-site ()
  "Build the site."
  (interactive)
  (let ((command (format
                  "cd %s && %s build &"
                  blog-admin-backend-path executable)))
    (-with-venv
(shell-command command))))

since fish shell needs:

cd %s; and build &

Any idea how blog-admin could be extended to cover fish shell?