chrisbarrett / skeletor.el

Powerful project skeletons for Emacs
GNU General Public License v3.0
126 stars 17 forks source link

Single quotes are not compatible with windows #55

Open dov opened 9 months ago

dov commented 9 months ago

The initial commit fails under Windows because of the git command line:

    (skeletor-shell-command "git commit --allow-empty -m 'Initial commit'")

To fix chis change the single quotes to double quotes like so:

    (skeletor-shell-command "git commit --allow-empty -m \"Initial commit\"")

Another option would be to rewrite skeletor-shell-command to quote the arguments for the platform.