mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
5de48b4800
1. Only use split() when we actually come in from CLI (possibly never need to do that at all) 2. Add some additional test cases to cover quoting. 3. Better error message in case of missing executable pulled from a run script. E.g.: ``` [scripts] random = "myexecutable a b c" myexecutable = "echo 5" ``` ``` Error: the command myexecutable (from random) could not be found within PATH. ``` vs. previous, which had a slightly disingenous error message. ``` Error: the command myexecutable could not be found within PATH or Pipfile's [scripts]. ```