Fixed incorrect mime type in ncc-package.xml
This update addresses a mistake in the `ncc-package.xml` file, where the wrong mime type was specified. The mime type has been corrected from `application/ncc-package` to `application/ncc` and the glob pattern from `*.ncc_pkg` to `*.ncc`. This change will ensure proper recognition and handling of the file type.
This commit is contained in:
parent
4ef923b83c
commit
89b0c931b9
2 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Fixed
|
||||
- Fixed issue where some build artifacts are being bundled with package builds such as `output_path` and `static`
|
||||
where they should not be included in the package.
|
||||
- Corrected mistakes in `ncc-package.xml` mime type
|
||||
|
||||
|
||||
## [2.0.1] - 2023-10-11
|
||||
|
|
|
@ -21,11 +21,11 @@
|
|||
-->
|
||||
|
||||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||
<mime-type type="application/ncc-package">
|
||||
<mime-type type="application/ncc">
|
||||
<comment>ncc package binary</comment>
|
||||
<magic priority="50">
|
||||
<match type="string" value="ncc_pkg" offset="0"/>
|
||||
</magic>
|
||||
<glob pattern="*.ncc_pkg"/>
|
||||
<glob pattern="*.ncc"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
Loading…
Add table
Reference in a new issue