mirror of
https://github.com/opdavies/versa.git
synced 2025-02-08 18:35:03 +00:00
Add -t
as a shortcut for --type
`versa run -t sculpin`
This commit is contained in:
parent
bd90f9045a
commit
49721132da
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Unrelased
|
||||||
|
|
||||||
|
- Add `-t` as a shortcut for `--type`.
|
||||||
|
|
||||||
## 0.1.0
|
## 0.1.0
|
||||||
|
|
||||||
- Add `install` for all projects based on the assumption it's a PHP project.
|
- Add `install` for all projects based on the assumption it's a PHP project.
|
||||||
|
|
1
versa
1
versa
|
@ -18,6 +18,7 @@ $application->addArgument(
|
||||||
|
|
||||||
$application->addOption(
|
$application->addOption(
|
||||||
name: 'type',
|
name: 'type',
|
||||||
|
shortcut: 't',
|
||||||
mode: InputArgument::OPTIONAL,
|
mode: InputArgument::OPTIONAL,
|
||||||
description: 'The project type',
|
description: 'The project type',
|
||||||
suggestedValues: ['drupal', 'sculpin'],
|
suggestedValues: ['drupal', 'sculpin'],
|
||||||
|
|
Loading…
Reference in a new issue