diff options
| author | Edward Yang <edward.yang6771@gmail.com> | 2017-05-29 21:55:35 -0500 |
|---|---|---|
| committer | Edward Yang <edward.yang6771@gmail.com> | 2017-05-29 21:55:35 -0500 |
| commit | f3b29d3f010e9895e711767eb9eeba7f5de9ba50 (patch) | |
| tree | e7b9054166122a6763aec7fbc4809f806e340d18 | |
| parent | 7c362732dc49d7ab6d3fcf973922337dae53dd5c (diff) | |
| download | rust-f3b29d3f010e9895e711767eb9eeba7f5de9ba50.tar.gz rust-f3b29d3f010e9895e711767eb9eeba7f5de9ba50.zip | |
Fix formatting issues in Distribution.xml
| -rw-r--r-- | src/etc/installer/pkg/Distribution.xml | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/src/etc/installer/pkg/Distribution.xml b/src/etc/installer/pkg/Distribution.xml index fd09f7b0a67..f138a1a3154 100644 --- a/src/etc/installer/pkg/Distribution.xml +++ b/src/etc/installer/pkg/Distribution.xml @@ -12,61 +12,61 @@ </volume-check> <choices-outline> <line choice="install"> - <line choice="rustc"/> - <line choice="rust-std"/> - <line choice="cargo"/> - <line choice="rust-docs"/> - <line choice="rls"/> + <line choice="rustc"/> + <line choice="rust-std"/> + <line choice="cargo"/> + <line choice="rust-docs"/> + <line choice="rls"/> </line> <line choice="uninstall" /> </choices-outline> <!-- - These 'selected' scripts ensure that install and uninstall can never be selected at - the same time. Exectly how they work is pretty mysterious, tied to the unspecified algorithm - the installer uses to traverse the options after one is toggled. + These 'selected' scripts ensure that install and uninstall can never be selected at + the same time. Exectly how they work is pretty mysterious, tied to the unspecified algorithm + the installer uses to traverse the options after one is toggled. --> <choice id="install" visible="true" - title="Install Rust" description="Install the Rust compiler, package manager and documentation." - customLocation="/usr/local" - selected="!choices.uninstall.selected" - /> + title="Install Rust" description="Install the Rust compiler, package manager and documentation." + customLocation="/usr/local" + selected="!choices.uninstall.selected" + /> <choice id="uninstall" visible="true" - title="Uninstall Rust" description="Select this option to uninstall an existing Rust installation." - customLocation="/usr/local" - selected="!(choices.install.selected || choices.rustc.selected || choices.cargo.selected || choices['rust-docs'].selected)" - start_selected="false" - > - <pkg-ref id="org.rust-lang.uninstall" /> + title="Uninstall Rust" description="Select this option to uninstall an existing Rust installation." + customLocation="/usr/local" + selected="!(choices.install.selected || choices.rustc.selected || choices.cargo.selected || choices['rust-docs'].selected)" + start_selected="false" + > + <pkg-ref id="org.rust-lang.uninstall"/> </choice> <choice id="rustc" visible="true" - title="Compiler" description="rustc, the Rust compiler, and rustdoc, the API documentation tool." - selected="(!choices.uninstall.selected && choices.rustc.selected) || (choices.uninstall.selected && choices.install.selected)" - > + title="Compiler" description="rustc, the Rust compiler, and rustdoc, the API documentation tool." + selected="(!choices.uninstall.selected && choices.rustc.selected) || (choices.uninstall.selected && choices.install.selected)" + > <pkg-ref id="org.rust-lang.rustc"/> </choice> <choice id="cargo" visible="true" - title="Cargo" description="cargo, the Rust package manager." - selected="(!choices.uninstall.selected && choices.cargo.selected) || (choices.uninstall.selected && choices.install.selected)" - > + title="Cargo" description="cargo, the Rust package manager." + selected="(!choices.uninstall.selected && choices.cargo.selected) || (choices.uninstall.selected && choices.install.selected)" + > <pkg-ref id="org.rust-lang.cargo"/> </choice> <choice id="rust-std" visible="true" - title="Standard Library" description="The Rust standard library." - selected="(!choices.uninstall.selected && choices['rust-std'].selected) || (choices.uninstall.selected && choices.install.selected)" - > + title="Standard Library" description="The Rust standard library." + selected="(!choices.uninstall.selected && choices['rust-std'].selected) || (choices.uninstall.selected && choices.install.selected)" + > <pkg-ref id="org.rust-lang.rust-std"/> </choice> <choice id="rust-docs" visible="true" - title="Documentation" description="HTML documentation." - selected="(!choices.uninstall.selected && choices['rust-docs'].selected) || (choices.uninstall.selected && choices.install.selected)" - > + title="Documentation" description="HTML documentation." + selected="(!choices.uninstall.selected && choices['rust-docs'].selected) || (choices.uninstall.selected && choices.install.selected)" + > <pkg-ref id="org.rust-lang.rust-docs"/> </choice> <choice id="rls" visible="true" - title="RLS" description="RLS, the Rust Language Server" - selected="(!choices.uninstall.selected && choices['rls'].selected) || (choices.uninstall.selected && choices.install.selected)" + title="RLS" description="RLS, the Rust Language Server" + selected="(!choices.uninstall.selected && choices['rls'].selected) || (choices.uninstall.selected && choices.install.selected)" start_selected="false" - > + > <pkg-ref id="org.rust-lang.rls"/> <pkg-ref id="org.rust-lang.rust-analysis"/> </choice> |
