48 | | Added new `CobraCommand` class to the std lib for conveniently finding and invoking the Cobra command line program from within Cobra. Example usage is r = CobraCommand.find.run(-c foo.cobra) and there are more details in the doc strings. |
49 | | This will subsume the CobraCore shared methods that do the same thing. |
50 | | It is now easier to specify that you want the .exe and not just the cobra script. |
51 | | New env vars COBRA_COMMAND_PATH and COBRA_EXE_PATH are supported. Old COBRA env var is not. |
| 45 | * Added new `CobraCommand` class to the std lib for conveniently finding and invoking the Cobra command line program from within Cobra. Example usage is: |
| 46 | {{{ |
| 47 | #!cobra |
| 48 | r = CobraCommand.find.run('-c foo.cobra') |
| 49 | }}} |
| 50 | There are more details in the doc strings. This will subsume the `CobraCore.findCobraExe` shared methods that do the same thing. |
| 51 | |
| 52 | It is now easier to specify that you want the .exe and not just the cobra script (`CobraCommand.find` vs. `CobraCommand.findExe`). |
| 53 | |
| 54 | New env vars `COBRA_COMMAND_PATH` and `COBRA_EXE_PATH` are supported. Old COBRA env var is not. |