Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion src/frontend/src/components/InstallAspireCLI.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import AsciinemaPlayer from "@components/AsciinemaPlayer.astro";
<Code
lang="powershell"
title={Astro.locals.t("aspire.installCliGlobally")}
code='iex "& { $(irm https://aspire.dev/install.ps1) }"'
code="irm https://aspire.dev/install.ps1 | iex"
/>
</TabItem>
</Tabs>
Expand Down
8 changes: 5 additions & 3 deletions src/frontend/src/components/InstallCliModal.astro
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const { id = "install-cli-modal" } = Astro.props;
<div class="code-wrapper" data-version="release">
<Code
lang="powershell"
code='iex "& { $(irm https://aspire.dev/install.ps1) }"'
code="irm https://aspire.dev/install.ps1 | iex"
frame="none"
/>
</div>
Expand Down Expand Up @@ -134,7 +134,8 @@ const { id = "install-cli-modal" } = Astro.props;
style="display: none;"
>
<Aside type="note">
Staging builds are prerelease versions. Not recommended for production.
Staging builds are prerelease versions. Not recommended for
production.
</Aside>
</div>

Expand All @@ -144,7 +145,8 @@ const { id = "install-cli-modal" } = Astro.props;
style="display: none;"
>
<Aside type="caution">
Hot off the press! Dev builds are the latest versions and may be unstable.
Hot off the press! Dev builds are the latest versions and
may be unstable.
</Aside>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/content/docs/get-started/install-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ You can download and run the script in a single command, to install the Aspire C
<TabItem label="PowerShell" icon="seti:powershell">
<Code
lang="powershell"
code='iex "& { $(irm https://aspire.dev/install.ps1) }"'
code='irm https://aspire.dev/install.ps1 | iex'
/>
</TabItem>
</Tabs>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/content/docs/whats-new/aspire-13.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The easiest way to upgrade to Aspire 13.0 is using the `aspire update` command:
<TabItem label="PowerShell" icon="seti:powershell">
<Code
lang="powershell"
code='iex "& { $(irm https://aspire.dev/install.ps1) }"'
code='irm https://aspire.dev/install.ps1 | iex'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we update this as well in our main repo if we haven't already?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In Learn?

/>
</TabItem>
</Tabs>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/content/docs/whats-new/aspire-9-5.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Moving between minor releases of Aspire is simple:
curl -sSL https://aspire.dev/install.sh | bash

# PowerShell
iex "& { $(irm https://aspire.dev/install.ps1) }"
irm https://aspire.dev/install.ps1 | iex
```

1. In your AppHost project file (that is, _MyApp.AppHost.csproj_), update the [📦 Aspire.AppHost.Sdk](https://www.nuget.org/packages/Aspire.AppHost.Sdk) NuGet package to version `9.5.0`:
Expand Down