From 25e7d234ba397e2b04ab46aefd1d78d9df408532 Mon Sep 17 00:00:00 2001 From: z0x <185145122+z0xca@users.noreply.github.com> Date: Tue, 4 Nov 2025 22:58:23 -0500 Subject: [PATCH] Update clone command to use '&&' for chaining --- www/src/components/Installation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/src/components/Installation.tsx b/www/src/components/Installation.tsx index 0526275..95c5d9e 100644 --- a/www/src/components/Installation.tsx +++ b/www/src/components/Installation.tsx @@ -22,7 +22,7 @@ export function Installation() { steps: [ { title: "Clone the repository", - command: "git clone https://github.com/RayLabsHQ/gitea-mirror.git\ncd gitea-mirror", + command: "git clone https://github.com/RayLabsHQ/gitea-mirror.git && cd gitea-mirror", id: "docker-clone" }, { @@ -166,4 +166,4 @@ export function Installation() { ); -} \ No newline at end of file +}