choco_packages: split config into a list#76
Conversation
Svieg
left a comment
There was a problem hiding this comment.
Me and @obilodeau talked about putting those packages in the default profile and install them using the package option in the profile. What do you think?
|
I thought about it but I found that the "package" section of the profile a little cumbersome to use. "package": [
// Feels hackish
{"package": "npcap --package-parameters /winpcap_mode=yes"}
// Feels verbose
{"package": "thunderbird", parameters: ["/winpcap_mode=yes"], ignore_checksum: true}
// Incompatible
"npcap --package-parameters /winpcap_mode=yes"
],But I'm not opposed to migrating completly. |
|
The profiles API is marked as experimental on purpose. The Proposal: and we keep p.s.: note the s on packages |
I modified the default config to allow splitting of
choco_packages.This idea is to allow to pass options to each package directly (to disallow checksums, specify package options, etc.)