-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Experimentally run `eldev doctor' during CI.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ab5c7a9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ikappaki, @juergenhoetzel: can anyone of you please have a look at this Windows-only failure, see e.g. here: https://github.com/doublep/eldev/actions/runs/5158910006/jobs/9293347032
Looks like Eldev doesn't handle
--
in the command line on Windows, but I don't understand why. This should be handled already at Elisp level, seeeldev-parse-options
. Something might go fishy ineldev.bat.in
, but as far as I can read it, it should behave similarly to the "standard" Linux script, which has no problem with this...If any of you investigates this, please write a comment to avoid job duplication. Thank you.
ab5c7a9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @doublep,
it's most probably due to the the double dash being a special operator in PowerShell and have to be escaped as such, as per https://stackoverflow.com/questions/15780174/powershell-command-line-parameters-and.
Patch incoming, assuming double quoting does not have side effects on the other platforms.
Thanks