From b7497bf2dff03cdb87e6bfba1b32355c4b06175d Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Thu, 4 Apr 2019 11:37:08 -0400 Subject: [PATCH] [DOCS] Remind users to include @ symbol when applying license file (#40688) --- docs/reference/licensing/update-license.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/licensing/update-license.asciidoc b/docs/reference/licensing/update-license.asciidoc index 81d80509252f4..04798c03947ba 100644 --- a/docs/reference/licensing/update-license.asciidoc +++ b/docs/reference/licensing/update-license.asciidoc @@ -79,16 +79,16 @@ POST /_license NOTE: These values are invalid; you must substitute the appropriate content from your license file. -You can alternatively use a `curl` command, for example: +You can also install your license file using a `curl` command. Be sure to add +`@` before the license file path to instruct curl to treat it as an input file. -[source,js] [source,shell] ------------------------------------------------------------ curl -XPUT -u 'http://:/_license' -H "Content-Type: application/json" -d @license.json ------------------------------------------------------------ // NOTCONSOLE -On Windows machine, use the following command: +On Windows, use the following command: [source,shell] ------------------------------------------------------------