Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improper handling of -- CLI arg separater #34

Open
JordanMartinez opened this issue Dec 22, 2023 · 0 comments
Open

Improper handling of -- CLI arg separater #34

JordanMartinez opened this issue Dec 22, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@JordanMartinez
Copy link
Contributor

Describe the bug

With a CLI like this (https://github.com/JordanMartinez/purs-installer/blob/master/purs-installer-bin/src/Main.purs#L34), this library doesn't parse the following correctly:

node index.js -- --version

due to the appearance of --. In this context, -- indicates to node that the following args are meant for the program being run, not node specifically.

Using the below repo and its instructions, the current test I have fails with:

Current output of the test:

Running tests for package: purs-installer-bin
spec
  ✗ binary is executable:

  Command failed with exit code 1: node /path/to/repo/purs-installer/bin/index.js -- --version
Missing: --purs-version VERSION

The --purs-version arg is a required arg for the second parser, the CLI one. However, the first parser, the version one, runs before the CLI one and always succeeds if its flag exists.

So, either I'm using this library wrong (which is entirely possible) or this library doesn't provide a way (that I know of) to indicate which args to drop.

To Reproduce

git clone https://github.com/jordanMartinez/purs-installer.git
cd purs-installer
git checkout d4cd1358b38ebf2089ea51d21907fddf7ff83708
# in https://github.com/JordanMartinez/purs-installer/blob/d4cd1358b38ebf2089ea51d21907fddf7ff83708/purs-installer-bin/test/Test/PursInstaller/Setup.purs#L54
# modify the line to the following
#  ([ Path.concat [ oldCwd, "bin", "index.js" ] ] <> [ "--" ] <> args) (_ 
npm i
npx spago test -p purs-installer-bin

Expected behavior

The test should pass.

@JordanMartinez JordanMartinez added the bug Something isn't working label Dec 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

No branches or pull requests

1 participant