From faef81123a590ee75b590c2606d86862ec90cf4b Mon Sep 17 00:00:00 2001 From: Max Schmeller <6088931+mojomex@users.noreply.github.com> Date: Sun, 22 Sep 2024 00:59:48 +0900 Subject: [PATCH] chore: apply suggestions to only remove contents of src, not src itself MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: M. Fatih Cırıt --- docs/installation/autoware/docker-installation.md | 2 +- docs/installation/autoware/source-installation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation/autoware/docker-installation.md b/docs/installation/autoware/docker-installation.md index 1e5a6f6799b..474b5ff714a 100644 --- a/docs/installation/autoware/docker-installation.md +++ b/docs/installation/autoware/docker-installation.md @@ -126,7 +126,7 @@ Inside the container, you can run the Autoware tutorials by following these link > and re-importing all dependencies may be necessary: > > ```bash -> rm -rf src +> rm -rf src/* > vcs import src < autoware.repos > ``` diff --git a/docs/installation/autoware/source-installation.md b/docs/installation/autoware/source-installation.md index f9cc15220ba..bd2998e3b01 100644 --- a/docs/installation/autoware/source-installation.md +++ b/docs/installation/autoware/source-installation.md @@ -143,7 +143,7 @@ sudo apt-get -y install git and re-importing all dependencies may be necessary: ```bash - rm -rf src + rm -rf src/* vcs import src < autoware.repos ```