Skip to content

Commit 24ecb84

Browse files
authored
update wix to include nu_plugin_polars (#12687)
# Description Update wix/msi to include nu_plugin_polars. 🤞🏻 # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
1 parent 0c4d533 commit 24ecb84

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

wix/main.wxs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,14 @@
291291
KeyPath='yes'/>
292292
</Component>
293293
-->
294+
<Component Id='binary24' Guid='*' Win64='$(var.Win64)'>
295+
<File
296+
Id='exe24'
297+
Name='nu_plugin_polars.exe'
298+
DiskId='1'
299+
Source='target\$(var.Profile)\nu_plugin_polars.exe'
300+
KeyPath='yes'/>
301+
</Component>
294302
</Directory>
295303
</Directory>
296304
</Directory>
@@ -356,6 +364,7 @@
356364
<ComponentRef Id='binary21'/> -->
357365
<ComponentRef Id='binary22'/>
358366
<!-- <ComponentRef Id='binary23'/> -->
367+
<ComponentRef Id='binary24'/>
359368

360369
<Feature
361370
Id='Environment'

0 commit comments

Comments
 (0)