Fix warning

Fix this warning
```
Warning: Packagers: option language has 'choices' but has type 'string', use 'select' instead to remove this warning.
```
This commit is contained in:
Éric Gaspar 2023-07-19 12:35:25 +02:00 committed by GitHub
parent 114663c728
commit 6ab7747d15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,7 +56,7 @@ ram.runtime = "50M"
ask.en = "Choose the application language" ask.en = "Choose the application language"
ask.fr = "Choisissez la langue de l'application" ask.fr = "Choisissez la langue de l'application"
type = "string" type = "string"
choices = ["fr", "en"] select = ["fr", "en"]
default = "fr" default = "fr"
[install.admin] [install.admin]