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

Ensure empty string is added into argv._ #140

Merged
merged 2 commits into from
Nov 19, 2018
Merged

Ensure empty string is added into argv._ #140

merged 2 commits into from
Nov 19, 2018

Commits on Oct 8, 2018

  1. Ensure empty string is added into argv._

    Prior to this commit, a string such as "hello '' world" would parse into
    ["hello", undefined, "world"]. This adds a catch for that, ensuring that
    an empty string is pushed instead, and adds associated tests.
    Jack Robinson committed Oct 8, 2018
    Configuration menu
    Copy the full SHA
    878e3b3 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2018

  1. Move undefined check to during 'detect end quotes'

    This issue concerns when arguments are undefined due to empty quoted
    strings. Therefore, it makes sense to place the check for an undefined
    argument into the block which detects the closing quotes.
    Jack Robinson committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    5d12599 View commit details
    Browse the repository at this point in the history