From c5d2942ff3222894c837dc6c882e5bbbd9397fa7 Mon Sep 17 00:00:00 2001 From: Adrian Date: Mon, 13 Jan 2025 22:56:20 +0100 Subject: [PATCH] Fix incorrect option name The option is actually called `install-success-msg`; using `custom-success-msg` does not work. --- book/src/reference/config.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/src/reference/config.md b/book/src/reference/config.md index 3a11b3e6..2819a6c6 100644 --- a/book/src/reference/config.md +++ b/book/src/reference/config.md @@ -51,7 +51,7 @@ We're currently in the middle of [a major config migration](https://github.com/a * [`install-libraries`](#install-libraries) * [`bin-aliases`](#bin-aliases) * [shell and powershell installer settings](#shell-and-powershell-installer-settings) - * [`custom-success-msg`](#custom-success-msg) + * [`install-success-msg`](#install-success-msg) * [`install-path`](#install-path) * [`install-updater`](#install-updater) * [npm installer settings](#npm-installer-settings) @@ -738,7 +738,7 @@ When using [shell][shell-installer] and [powershell][powershell-installer] insta These settings are specific to the [shell][shell-installer] and [powershell][powershell-installer] installers, which provide a `curl | sh` installer for unix, and the equivalent `irm | iex` for windows. The two largely support the same things and behave the same, and typically want to be configured and enabled together. -#### `custom-success-msg` +#### `install-success-msg` > since 0.15.0
[package-local][]
> 📖 read the [shell][shell-installer] and [powershell][powershell-installer] installer guides!\ @@ -747,7 +747,7 @@ These settings are specific to the [shell][shell-installer] and [powershell][pow > *in your dist-workspace.toml or dist.toml:* > ```toml > [dist] -> custom-success-msg = "axolotlsay is ready to rumble! >o_o<" +> install-success-msg = "axolotlsay is ready to rumble! >o_o<" > ``` The message to display on success in the [shell][shell-installer] and [powershell][powershell-installer] installers.