From cf74354da390194528dec3ff103c7ddf1173a728 Mon Sep 17 00:00:00 2001 From: qiucangyue Date: Wed, 6 Aug 2025 09:33:39 +0800 Subject: [PATCH] doc: add missing cd Cloudreve step before git checkout --- en/overview/build.md | 3 +++ zh/overview/build.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/en/overview/build.md b/en/overview/build.md index dca92fc..d34cbe1 100644 --- a/en/overview/build.md +++ b/en/overview/build.md @@ -15,6 +15,9 @@ Cloudreve project mainly consists of two parts: the backend main repository [clo # Clone the repository git clone --recurse-submodules https://github.com/cloudreve/Cloudreve.git +# Enter the project directory +cd Cloudreve + # Check out the version you want to compile git checkout 4.x.x ``` diff --git a/zh/overview/build.md b/zh/overview/build.md index 4a4ed49..c441122 100644 --- a/zh/overview/build.md +++ b/zh/overview/build.md @@ -15,6 +15,9 @@ Cloudreve 项目主要由两部分组成:后端主仓库 [cloudreve/Cloudreve] # 克隆仓库 git clone --recurse-submodules https://github.com/cloudreve/Cloudreve.git +# 进入项目目录 +cd Cloudreve + # 签出您要编译的版本 git checkout 4.x.x ```