tighten / takeout

Docker-based development-only dependency manager. macOS, Linux, and WSL2-only and installs via PHP's Composer... for now.
MIT License
1.59k stars 83 forks source link

Allow passing through additional options after the enable command #294

Closed mattstauffer closed 2 years ago

mattstauffer commented 2 years ago

E.g.

takeout enable meilisearch -- --meilisearch-specific-flag-here --other-flag=great -e 'SOMETHING'

Closes #218

mattstauffer commented 2 years ago

OK, it's incomplete in part because I only am processing pass through flags that start with two dashes, so i need to write a test and fix it to also work for this:

takeout enable meilisearch -- -e MEILI_MASTER_KEY='MY_KEY_HERE'
mattstauffer commented 2 years ago

Fixed that.

mattstauffer commented 2 years ago

The failing tests are a PHP version issue that we're handling elsewhere.