From e11c32d1ab1121d493f288a6eb79e9bb79841f5c Mon Sep 17 00:00:00 2001 From: Knocklive Date: Sun, 11 Jan 2026 22:15:54 +0100 Subject: [PATCH] Clean up install instructions by removing unnecessary leading spaces in shell commands --- getting-started/installation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/getting-started/installation.md b/getting-started/installation.md index 460e47f3..0da6af29 100644 --- a/getting-started/installation.md +++ b/getting-started/installation.md @@ -29,31 +29,31 @@ the install specific instructions below 3. Clone the repository: ```shell - git clone https://github.com/MagicMirrorOrg/MagicMirror +git clone https://github.com/MagicMirrorOrg/MagicMirror.git ``` 4. Enter the repository: ```shell - cd MagicMirror +cd MagicMirror ``` 5. Install the application: `` ```shell - node --run install-mm +node --run install-mm ``` 6. Make a copy of the config sample file: ```shell - cp config/config.js.sample config/config.js +cp config/config.js.sample config/config.js ``` 7. Start the application: ```shell - node --run start +node --run start ``` ::: warning NOTE