From fd535ad3e32ad324b70e68ba893e2018d0222acd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 1 Jan 2026 07:30:45 +0000 Subject: [PATCH] docs: Fix link consistency and chmod order in binary installation Co-authored-by: Benexl <81157281+Benexl@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d93ec2d..a70e82c 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ The easiest way to get started is to download a pre-built, self-contained binary * **macOS** (Apple Silicon ARM64): `viu-macos-arm64` **Installation Steps:** -1. Download the appropriate binary for your platform from the [releases page](https://github.com/viu-media/viu/releases/latest). +1. Download the appropriate binary for your platform from the [**releases page**](https://github.com/viu-media/viu/releases/latest). 2. **Linux/macOS:** Make it executable and move to PATH: ```bash # Example for Linux (adjust binary name for your platform) @@ -83,8 +83,8 @@ The easiest way to get started is to download a pre-built, self-contained binary sudo mv viu-linux-x86_64 /usr/local/bin/viu # Or to a user directory - mkdir -p ~/.local/bin chmod +x viu-linux-x86_64 + mkdir -p ~/.local/bin mv viu-linux-x86_64 ~/.local/bin/viu # Make sure ~/.local/bin is in your PATH ```