From 07ba341736651943f8ce0ade15665e1d19668d77 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 31 Mar 2022 22:28:12 +0200 Subject: [PATCH] IAM: fix missing prompt, causing code to not be selectable This code-block uses the "console" highlighting, which considers lines that do not start with a prompt to be "output" of the command, and non-selectable. Signed-off-by: Sebastiaan van Stijn --- _includes/configure-registry-json.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/configure-registry-json.md b/_includes/configure-registry-json.md index 43f21fc86d..9d744f48b3 100644 --- a/_includes/configure-registry-json.md +++ b/_includes/configure-registry-json.md @@ -52,13 +52,13 @@ To create your `registry.json` file on macOS: 3. Open a new terminal and type the following command: ```console - sudo mkdir -p /Library/Application\ Support/com.docker.docker + $ sudo mkdir -p /Library/Application\ Support/com.docker.docker ``` If prompted, type your password associated with your local computer. 4. Type the following command: - ```console - sudo cp Documents/registry.json /Library/Application\ Support/com.docker.docker/registry.json + ```console + $ sudo cp Documents/registry.json /Library/Application\ Support/com.docker.docker/registry.json ```