Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing setting in schema #5070

Merged
merged 8 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/Settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ The 'skipDependencies' behavior affects whether dependencies are installed for a
```

### Archive Extraction Method
The 'archiveExtractionMethod' behavior affects how installer archives are extracted. Currently there are two supported values: `Tar` or `ShellApi`.

The `archiveExtractionMethod` behavior affects how installer archives are extracted. Currently there are two supported values: `Tar` or `ShellApi`.
Gijsreyn marked this conversation as resolved.
Show resolved Hide resolved
`Tar` indicates that the archive should be extracted using the tar executable ('tar.exe') while `shellApi` indicates using the Windows Shell API. Defaults to `shellApi` if value is not set or is invalid.

```json
Expand Down
5 changes: 5 additions & 0 deletions schemas/JSON/settings/settings.schema.0.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@
"type": "integer",
"default": 3,
"minimum": 1
},
"archiveExtractionMethod": {
"description": "Controls the use of tar.exe for extracting packages.",
Gijsreyn marked this conversation as resolved.
Show resolved Hide resolved
"type": "boolean",
Gijsreyn marked this conversation as resolved.
Show resolved Hide resolved
"default": false
}
}
},
Expand Down
Loading