From ac20a47f1eaeb1bd8941c66e2acc7508b42ed1c3 Mon Sep 17 00:00:00 2001 From: Masanori Suda <45743821+MasanoriSuda@users.noreply.github.com> Date: Sun, 3 Dec 2023 14:29:13 +0900 Subject: [PATCH] fix:modified a typo for deleting directories in clean_build.sh (#42) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * セットアップドキュメントの修正 ・CPUのみの環境時に実行するファイル名を追加 ・Autowareの初回起動時に実行するファイルを追加 * clean_build.shでinstallとbuildディレクトリがクリーンされないので修正 --- docker/aichallenge/clean_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/aichallenge/clean_build.sh b/docker/aichallenge/clean_build.sh index d643cc5..a51da2b 100644 --- a/docker/aichallenge/clean_build.sh +++ b/docker/aichallenge/clean_build.sh @@ -1,3 +1,3 @@ # use this at breaking change ! commit or build fail -sudo rm -r install/* build/* +sudo rm -r aichallenge_ws/install/* aichallenge_ws/build/* bash build_autoware.sh