collegevine / collegevine/confcrypt
`--type string` causes `Prelude.read: no parse`
Open
- Dominant language
- Haskell
- Stars
- 3
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Repro:
```
> confcrypt aws add --key "…" --type string --name FOO --value BAR config.econf
```
Solution:
```
> confcrypt aws add --key "$CONFCRYPT_KMS_KEY" --type String --name FOO --value bar app_config/dev.econf
```
```diff
-confcrypt aws add --key "$CONFCRYPT_KMS_KEY" --type string --name FOO --value bar app_config/dev.econf
+confcrypt aws add --key "$CONFCRYPT_KMS_KEY" --type String --name FOO --value bar app_config/dev.econf
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.