emacs-eldev / eldev

Elisp development tool
https://emacs-eldev.github.io/eldev/
GNU General Public License v3.0
229 stars 17 forks source link

Check if %1 got expanded #38

Closed juergenhoetzel closed 3 years ago

juergenhoetzel commented 3 years ago

This prevents an invalid URL from being generated when the webinstaller is used via a cmd.exe pipe.

Fixes this issue:

curl: (6) Could not resolve host: %1

In the CI tests we don't pipe the webinstaller\eldev.bat into cmd.exe. That's why this error didn't show up in the CI tests.

doublep commented 3 years ago

Thank you.